Skip to content

Commit 3a86fa5

Browse files
authored
[fix] Debug badge update fix (#8425)
Fix typo in #8395. --- - [x] I’ve reviewed the contributor guide and applied the relevant portions to this PR. <details> <summary>Contribution guidelines:</summary><br> - See our [contributor guide]([https://github.com/dart-lang/sdk/blob/main/CONTRIBUTING.md](https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview) for general expectations for PRs. - Larger or significant changes should be discussed in an issue before creating a PR. - Dart contributions to our repos should follow the [Dart style guide](https://dart.dev/guides/language/effective-dart) and use `dart format`. - Java and Kotlin contributions should strive to follow Java and Kotlin best practices ([discussion](#8098)). </details>
1 parent 9795732 commit 3a86fa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/io/flutter/toolwindow/ToolWindowBadgeUpdater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ else if (app.getMode() == RunMode.DEBUG) {
4646
if (debugToolWindow != null) {
4747
Icon baseIcon = AllIcons.Toolwindows.ToolWindowDebugger;
4848
BadgeIcon iconWithBadge = new BadgeIcon(baseIcon, BADGE_PAINT);
49-
runToolWindow.setIcon(iconWithBadge);
49+
debugToolWindow.setIcon(iconWithBadge);
5050
}
5151
});
5252
}

0 commit comments

Comments
 (0)