menu
authorClaus Gittinger <cg@exept.de>
Fri, 26 Mar 2004 12:49:38 +0100
changeset 5798 b462ee7ebf59
parent 5797 6dbe60b73b47
child 5799 c46836ecf880
menu
DebugView.st
--- a/DebugView.st	Wed Mar 24 16:02:45 2004 +0100
+++ b/DebugView.st	Fri Mar 26 12:49:38 2004 +0100
@@ -2350,13 +2350,13 @@
                     ('Remove all Trace & Breakpoints'   removeAllBreakpoints    )
                 ).
 
-        ignoreBreakpoints == true ifTrue:[
+        self allowBreakPointsInDebugger ifFalse:[
             items := items , #(
                         ('Allow Halt & Breakpoint in Debugger'       doNotIgnoreBreakpoints  )
                     ).
-        ] ifFalse:[
+        ] ifTrue:[
             items := items , #(
-                        ('Ignore Breakpoints in doIts'      doIgnoreBreakpoints  )
+                        ('Ignore Halt & Breakpoints in Debugger'     doIgnoreBreakpoints  )
                     ).
         ].
 
@@ -3048,7 +3048,8 @@
 
 allowBreakPointsInDebugger:aBoolean
     ignoreBreakpoints := aBoolean not.
-    self initializeMiddleButtonMenu
+    self initializeMiddleButtonMenu.
+    self initializeContextViewsMiddleButtonMenu.
 !
 
 autoUpdateOff
@@ -5828,7 +5829,7 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.362 2004-03-20 15:30:15 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.363 2004-03-26 11:49:38 cg Exp $'
 ! !
 
 DebugView initialize!