Skip to content

Commit 28bac81

Browse files
authored
debug: fix breakpoint icons in editor have wrong color (microsoft#226902)
Fixes microsoft#226845
1 parent 9e6bd42 commit 28bac81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ class InlineBreakpointWidget implements IContentWidget, IDisposable {
811811
}
812812

813813
registerThemingParticipant((theme, collector) => {
814-
const scope = '.monaco-editor .glyph-margin-widgets, .monaco-workbench .debug-breakpoints, .monaco-workbench .disassembly-view';
814+
const scope = '.monaco-editor .glyph-margin-widgets, .monaco-workbench .debug-breakpoints, .monaco-workbench .disassembly-view, .monaco-editor .contentWidgets';
815815
const debugIconBreakpointColor = theme.getColor(debugIconBreakpointForeground);
816816
if (debugIconBreakpointColor) {
817817
collector.addRule(`${scope} {

0 commit comments

Comments
 (0)