MenuItem.st
changeset 4019 054964b89175
parent 3966 be0d53f65bb3
child 4029 14e3074dd294
--- a/MenuItem.st	Tue Sep 26 12:27:32 2017 +0200
+++ b/MenuItem.st	Tue Sep 26 16:41:47 2017 +0200
@@ -545,11 +545,11 @@
 
     "/ VW compatibility: if I have a label also,
     "/ this will become a LabelAndImage.
-    something isImage ifTrue:[
-        label notNil ifTrue:[
-            labelImage := LabelAndIcon icon:labelImage string:label
-        ]
+    (something isImage and:[label notNil]) ifTrue:[
+        labelImage := LabelAndIcon icon:labelImage string:label.
     ].
+
+    "Modified: / 26-09-2017 / 12:29:32 / stefan"
 !
 
 nameKey