#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 13 Sep 2016 16:09:20 +0200
changeset 5864 2b97dee5149e
parent 5863 65a6789689a3
child 5865 e3e40eabdebc
#DOCUMENTATION by cg class: SelectionInListView comment/format in: #ignoreReselect: #toggleSelect:
SelectionInListView.st
--- a/SelectionInListView.st	Tue Sep 13 15:58:03 2016 +0200
+++ b/SelectionInListView.st	Tue Sep 13 16:09:20 2016 +0200
@@ -1395,9 +1395,9 @@
      The default is true, meaning that a click on an already selected
      does not lead to a notification via the actionBlock/change mechanism."
 
-"ca: 
-    multiple selection on: the ignoreReselect will have no influence
-"
+    "note by ca: 
+        multiple selection on: the ignoreReselect will have no influence
+    "
     ignoreReselect := aBoolean
 !
 
@@ -1416,10 +1416,11 @@
 !
 
 toggleSelect:aBoolean
-    "turn on/off toggle select. If true, clicking on a selected entry
-     unselects it and vice versa. The default is false, which means
+    "turn on/off toggle select. 
+     If true, clicking on a selected entry unselects it and vice versa. 
+     The default is false, which means
      that clicking on an already selected entry does not change its
-     select status (see also ignoreReselect:)."
+     select status (see also ignoreReselect:, which has higher prio and is checked first)."
 
     toggleSelect := aBoolean.
 ! !