@@ -638,7 +638,7 @@ export function getBreakpointMessageAndClassName(debugService: IDebugService, br
638638
639639 if ( ! breakpoint . enabled || ! debugService . getModel ( ) . areBreakpointsActivated ( ) ) {
640640 return {
641- className : breakpoint instanceof DataBreakpoint ? 'debug-data-breakpoint-disabled' : breakpoint instanceof FunctionBreakpoint ? 'debug-function-breakpoint-disabled' : breakpoint . logMessage ? 'debug -breakpoint-log-disabled' : 'debug -breakpoint-disabled' ,
641+ className : breakpoint instanceof DataBreakpoint ? 'debug-data-breakpoint-disabled' : breakpoint instanceof FunctionBreakpoint ? 'debug-function-breakpoint-disabled' : breakpoint . logMessage ? 'codicon -breakpoint-log-disabled' : 'codicon -breakpoint-disabled' ,
642642 message : breakpoint . logMessage ? nls . localize ( 'disabledLogpoint' , "Disabled Logpoint" ) : nls . localize ( 'disabledBreakpoint' , "Disabled Breakpoint" ) ,
643643 } ;
644644 }
@@ -648,7 +648,7 @@ export function getBreakpointMessageAndClassName(debugService: IDebugService, br
648648 } ;
649649 if ( debugActive && ! breakpoint . verified ) {
650650 return {
651- className : breakpoint instanceof DataBreakpoint ? 'debug-data-breakpoint-unverified' : breakpoint instanceof FunctionBreakpoint ? 'debug-function-breakpoint-unverified' : breakpoint . logMessage ? 'debug -breakpoint-log-unverified' : 'debug-breakpoint-unverified' ,
651+ className : breakpoint instanceof DataBreakpoint ? 'debug-data-breakpoint-unverified' : breakpoint instanceof FunctionBreakpoint ? 'debug-function-breakpoint-unverified' : breakpoint . logMessage ? 'codicon -breakpoint-log-unverified' : 'debug-breakpoint-unverified' ,
652652 message : breakpoint . message || ( breakpoint . logMessage ? nls . localize ( 'unverifiedLogpoint' , "Unverified Logpoint" ) : nls . localize ( 'unverifiedBreakopint' , "Unverified Breakpoint" ) ) ,
653653 } ;
654654 }
@@ -702,7 +702,7 @@ export function getBreakpointMessageAndClassName(debugService: IDebugService, br
702702 }
703703
704704 return {
705- className : breakpoint . logMessage ? 'debug -breakpoint-log' : 'debug -breakpoint-conditional' ,
705+ className : breakpoint . logMessage ? 'codicon -breakpoint-log' : 'codicon -breakpoint-conditional' ,
706706 message : appendMessage ( messages . join ( '\n' ) )
707707 } ;
708708 }
@@ -727,7 +727,7 @@ export function getBreakpointMessageAndClassName(debugService: IDebugService, br
727727 }
728728
729729 return {
730- className : 'debug-breakpoint' ,
730+ className : 'debug-breakpoint, codicon-circle-filled ' ,
731731 message : breakpoint . message || nls . localize ( 'breakpoint' , "Breakpoint" )
732732 } ;
733733}
0 commit comments