UIPainter.st
changeset 3670 3b90ebd379e9
parent 3648 474d54e24cab
child 3755 e4364fb2e320
--- 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