#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Fri, 01 Mar 2019 16:11:10 +0100
changeset 6016 26f454374801
parent 6015 2eabdcac77fb
child 6017 4d87665db62d
#REFACTORING by cg class: SelectionInTreeView changed: #fetchImageResources (send #~~ instead of #>)
SelectionInTreeView.st
--- a/SelectionInTreeView.st	Fri Mar 01 16:10:30 2019 +0100
+++ b/SelectionInTreeView.st	Fri Mar 01 16:11:10 2019 +0100
@@ -1676,7 +1676,7 @@
         y := (img height) max:y.
     ].
 
-    (listOfNodes size > 0 and:[(img := listOfNodes first icon) isImage]) ifTrue:[
+    (listOfNodes size ~~ 0 and:[(img := listOfNodes first icon) isImage]) ifTrue:[
         x := (img width)  max:x.
         y := (img height) max:y.
     ].
@@ -1684,6 +1684,7 @@
 
     "Modified: / 04-02-2017 / 21:04:08 / cg"
     "Modified (comment): / 04-02-2017 / 22:28:13 / cg"
+    "Modified: / 01-03-2019 / 16:10:53 / Claus Gittinger"
 !
 
 getFontParameters