ComboView.st
changeset 4227 693706272bcb
parent 4225 565906233a1d
child 4495 1c4898a0a432
--- a/ComboView.st	Tue May 28 20:41:16 2013 +0200
+++ b/ComboView.st	Tue May 28 20:42:55 2013 +0200
@@ -786,12 +786,15 @@
 
     self getListFromModel.
 
-    opensMenu := (list notEmptyOrNil and:[self enableChannel value]).
+    opensMenu := ((list notEmptyOrNil or:[comboMenuHolder notNil])
+                and:[self enableChannel value]).
 
     opensMenu ifTrue:[
         menu := self createPullDownMenuForList:list.
         origin := device translatePoint:(0 @ self height) fromView:self toView:nil.
-        menu showAt:origin.
+        "/ menu extentChangedFlag:false.
+        "/ menu originChangedFlag:false.
+        menu showAt:origin resizing:false.
     ].
 
     pullDownButton turnOff.
@@ -918,10 +921,10 @@
 !ComboView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.111 2013-05-28 13:52:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.112 2013-05-28 18:42:55 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.111 2013-05-28 13:52:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/ComboView.st,v 1.112 2013-05-28 18:42:55 cg Exp $'
 ! !