SelectionInTreeView.st
changeset 4246 b2aeabea341b
parent 3985 4638e9fbb842
child 4253 85c181bb2c96
--- a/SelectionInTreeView.st	Tue Jun 25 22:25:44 2013 +0200
+++ b/SelectionInTreeView.st	Tue Jun 25 23:22:30 2013 +0200
@@ -1769,7 +1769,7 @@
     "
     |coll value size idx|
 
-    (value := selectionHolder value) isNil ifFalse:[
+    (value := selectionHolder value) notNil ifTrue:[
         (multipleSelectOk and:[value isCollection]) ifFalse:[
             ^ self selectNode:value withNotify:false.
         ].
@@ -2504,9 +2504,10 @@
 !SelectionInTreeView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.115 2011-01-19 18:34:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.116 2013-06-25 21:22:30 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.115 2011-01-19 18:34:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/SelectionInTreeView.st,v 1.116 2013-06-25 21:22:30 cg Exp $'
 ! !
+