Skip to content

Commit 39296d2

Browse files
authored
Disable breakpoint hint when a test loading icon is present (microsoft#180884)
1 parent 8daeaab commit 39296d2

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
@@ -468,7 +468,7 @@ export class BreakpointEditorContribution implements IBreakpointEditorContributi
468468
if (decorations) {
469469
for (const { options } of decorations) {
470470
const clz = options.glyphMarginClassName;
471-
if (clz && (!clz.includes('codicon-') || clz.includes('codicon-testing-') || clz.includes('codicon-merge-') || clz.includes('codicon-arrow-'))) {
471+
if (clz && (!clz.includes('codicon-') || clz.includes('codicon-testing-') || clz.includes('codicon-merge-') || clz.includes('codicon-arrow-') || clz.includes('codicon-loading'))) {
472472
return false;
473473
}
474474
}

0 commit comments

Comments
 (0)