MenuPanel.st
changeset 1177 cfd7f71639f3
parent 1164 e6e9633abf48
child 1181 97ee0869b374
--- a/MenuPanel.st	Sat Nov 14 20:46:16 1998 +0100
+++ b/MenuPanel.st	Thu Nov 19 13:04:55 1998 +0100
@@ -2699,20 +2699,21 @@
     anItemList := InitialSelectionQuerySignal raise.
 
     self isPopUpView ifTrue:[
-	self grabMouseAndKeyboard
+        self grabMouseAndKeyboard
     ] ifFalse:[
 "/        styleSheet is3D ifTrue:[self borderWidth:0].
-	super viewBackground:(self backgroundColor).
+        super viewBackground:(self backgroundColor).
     ].
     self do:[:el| el updateIndicators ].
 
     anItemList size > 0 ifTrue:[
-	self redrawX:0 y:0 width:10000 height:10000.
-	self openMenusFromItems:anItemList.
+"/        self invalidateRepairNow:false.
+        self redrawX:0 y:0 width:width height:height.
+        self openMenusFromItems:anItemList.
     ].
 
     "Modified: / 2.2.1998 / 09:27:21 / stefan"
-    "Modified: / 20.8.1998 / 19:17:07 / cg"
+    "Modified: / 19.11.1998 / 12:59:00 / cg"
 !
 
 realize
@@ -5243,6 +5244,6 @@
 !MenuPanel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/MenuPanel.st,v 1.131 1998-10-05 11:17:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/MenuPanel.st,v 1.132 1998-11-19 12:04:55 cg Exp $'
 ! !
 MenuPanel initialize!