DSVColumnView.st
changeset 5718 a3083ed0c1b8
parent 5717 30b609979318
child 5719 d53bae9fd8b2
--- a/DSVColumnView.st	Thu Mar 08 14:30:32 2018 +0100
+++ b/DSVColumnView.st	Thu Mar 08 14:46:13 2018 +0100
@@ -4871,7 +4871,7 @@
 
 selectionChanged:colNrOrNil
     "selection has changed"
-
+    
     |val|
 
     model notNil ifTrue:[
@@ -4882,10 +4882,6 @@
             |newVal|
 
             newVal := (useIndex ifTrue:[val] ifFalse:[self selectedRow]).
-
-            (multipleSelectOk and:[newVal isNil]) ifTrue:[ "/ see selectedRow - answer nil for nothing selected
-                newVal := OrderedCollection new.
-            ].
             "/ must check here: valueHolder compares using identity to identify
             "/ changes. This would lead to an endless recursion....
             model value ~= newVal ifTrue:[
@@ -4900,8 +4896,6 @@
             actionBlock valueWithOptionalArgument:(self selectedRowIndex) and:colNrOrNil
         ].
     ]
-
-    "Modified: / 08-03-2018 / 14:27:36 / mawalch"
 !
 
 selectionIndicesDo:aOneArgBlock