reset menuBar in keyProcessor
authorca
Tue, 05 Oct 1999 19:01:00 +0200
changeset 1250 644ed357b524
parent 1249 bb12f148aa96
child 1251 379bd54db35b
reset menuBar in keyProcessor
DataSetBuilder.st
ImageEditor.st
MenuEditor.st
--- a/DataSetBuilder.st	Tue Oct 05 18:55:35 1999 +0200
+++ b/DataSetBuilder.st	Tue Oct 05 19:01:00 1999 +0200
@@ -2648,6 +2648,14 @@
 
 
 
+!
+
+postOpenWith:aBuilder
+    "reset keyboardProcessor for menuBar
+    "
+    super postOpenWith: aBuilder.
+    aBuilder keyboardProcessor menuBar:nil.
+
 ! !
 
 !DataSetBuilder methodsFor:'user actions'!
--- a/ImageEditor.st	Tue Oct 05 18:55:35 1999 +0200
+++ b/ImageEditor.st	Tue Oct 05 19:01:00 1999 +0200
@@ -1962,7 +1962,9 @@
 
     postOpenAction notNil ifTrue: [postOpenAction value].
 
-    super postOpenWith:aBuilder
+    super postOpenWith:aBuilder.
+
+    aBuilder keyboardProcessor menuBar:nil.
 
     "Modified: / 29.7.1998 / 18:49:20 / cg"
 ! !
--- a/MenuEditor.st	Tue Oct 05 18:55:35 1999 +0200
+++ b/MenuEditor.st	Tue Oct 05 19:01:00 1999 +0200
@@ -2368,6 +2368,13 @@
     "build a tree from aMenu and open it modal"
 
     super openModalOnResourceSpec: aMenu
+!
+
+postOpenWith:aBuilder
+    "reset keyboardProcessor for menuBar
+    "
+    super postOpenWith: aBuilder.
+    aBuilder keyboardProcessor menuBar:nil.
 ! !
 
 !MenuEditor methodsFor:'user actions'!