#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Wed, 18 Apr 2018 12:17:10 +0200
changeset 18045 ad87b5ae1d07
parent 18044 c9957a145a7b
child 18046 fd21c26b4fc9
#BUGFIX by stefan class: FilenameEditFieldV2 changed: #pullMenu fix DNU
FilenameEditFieldV2.st
--- a/FilenameEditFieldV2.st	Wed Apr 18 05:17:00 2018 +0200
+++ b/FilenameEditFieldV2.st	Wed Apr 18 12:17:10 2018 +0200
@@ -246,11 +246,11 @@
     "pull the menu - triggered from the button"
 
     |menu origin plug acceptOnLostFocus|
-    
+
     completitionList notNil ifTrue:[
         self list:completitionList
     ] ifFalse:[
-        self list:(listHolder value collect:[:el| el path]).
+        self list:(listHolder value ? #() collect:[:el| el path]).
     ].
     menu := self createPullDownMenuForList:list.
 
@@ -277,6 +277,8 @@
     field acceptOnLostFocus:acceptOnLostFocus.
     activeMenu := nil.
     pullDownButton turnOff.
+
+    "Modified (format): / 18-04-2018 / 12:16:55 / stefan"
 ! !
 
 !FilenameEditFieldV2 class methodsFor:'documentation'!