# HG changeset patch # User ca # Date 939142860 -7200 # Node ID 644ed357b52439f43f05df867375cb908d9a07fc # Parent bb12f148aa963741df22005a660b18e3c4425c3a reset menuBar in keyProcessor diff -r bb12f148aa96 -r 644ed357b524 DataSetBuilder.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'! diff -r bb12f148aa96 -r 644ed357b524 ImageEditor.st --- 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" ! ! diff -r bb12f148aa96 -r 644ed357b524 MenuEditor.st --- 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'!