mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Verified non suspending breakpoints icons - IDEA-190220
This commit is contained in:
@@ -80,7 +80,7 @@ public class FieldBreakpoint extends BreakpointWithHighlighter<JavaFieldBreakpoi
|
||||
|
||||
@Override
|
||||
protected Icon getVerifiedIcon(boolean isMuted) {
|
||||
return AllIcons.Debugger.Db_verified_field_breakpoint;
|
||||
return isSuspend() ? AllIcons.Debugger.Db_verified_field_breakpoint : AllIcons.Debugger.Db_verified_no_suspend_field_breakpoint;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -72,7 +72,7 @@ public class LineBreakpoint<P extends JavaBreakpointProperties> extends Breakpoi
|
||||
|
||||
@Override
|
||||
protected Icon getVerifiedIcon(boolean isMuted) {
|
||||
return AllIcons.Debugger.Db_verified_breakpoint;
|
||||
return isSuspend() ? AllIcons.Debugger.Db_verified_breakpoint : AllIcons.Debugger.Db_verified_no_suspend_breakpoint;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -374,7 +374,7 @@ public class MethodBreakpoint extends BreakpointWithHighlighter<JavaMethodBreakp
|
||||
|
||||
@Override
|
||||
protected Icon getVerifiedIcon(boolean isMuted) {
|
||||
return AllIcons.Debugger.Db_verified_method_breakpoint;
|
||||
return isSuspend() ? AllIcons.Debugger.Db_verified_method_breakpoint : AllIcons.Debugger.Db_verified_no_suspend_method_breakpoint;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
Reference in New Issue
Block a user