Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2003-08-27 17:00:11 +0000
committerDarin Wright2003-08-27 17:00:11 +0000
commit991dc0636fa5a6941542f3636fb4629d73c3642d (patch)
treeee4c01663459b37f1db7dfb1194a526c4a422926 /org.eclipse.debug.ui
parent4231db11e0b16b43a3083e74ef6aa33f7051a912 (diff)
downloadeclipse.platform.debug-991dc0636fa5a6941542f3636fb4629d73c3642d.tar.gz
eclipse.platform.debug-991dc0636fa5a6941542f3636fb4629d73c3642d.tar.xz
eclipse.platform.debug-991dc0636fa5a6941542f3636fb4629d73c3642d.zip
bug 42037 - Breakpoint not shown as checked when enabled.
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
index d5022dfd3..8f95f82cd 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/breakpoints/BreakpointsView.java
@@ -220,6 +220,7 @@ public class BreakpointsView extends AbstractDebugView {
protected void becomesVisible() {
super.becomesVisible();
getViewer().refresh();
+ initializeCheckedState();
}
}

Back to the top