#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Tue, 28 May 2019 08:28:47 +0200
changeset 3670 3b90ebd379e9
parent 3669 650468354956
child 3671 9381b0856c14
#DOCUMENTATION by cg class: UIPainter::TreeView comment/format in: #hasMultipleSelectionOtherThanCanvas
UIPainter.st
--- a/UIPainter.st	Tue May 28 08:28:02 2019 +0200
+++ b/UIPainter.st	Tue May 28 08:28:47 2019 +0200
@@ -7254,9 +7254,11 @@
 !
 
 hasMultipleSelectionOtherThanCanvas
-    "returns true in case that any selection other than the canvas exists"
+    "returns true if any selection other than the canvas exists"
 
     ^ selection size > 0 and:[ (selection count:[:anyindex | anyindex ~~ 1]) > 1]
+
+    "Modified (comment): / 28-05-2019 / 06:53:53 / Claus Gittinger"
 !
 
 hasOneSelectionOtherThanCanvas