#TUNING by exept
authorClaus Gittinger <cg@exept.de>
Sun, 08 Sep 2019 14:59:55 +0200
changeset 3756 7fad458b3706
parent 3755 e4364fb2e320
child 3757 cc41088a39df
#TUNING by exept class: UIObjectView::UndoHistory changed: #labelOfLastUndo (send #== instead of #=)
UIObjectView.st
--- a/UIObjectView.st	Sun Sep 08 14:59:41 2019 +0200
+++ b/UIObjectView.st	Sun Sep 08 14:59:55 2019 +0200
@@ -3127,7 +3127,7 @@
 labelOfLastUndo
     "return astring describing the last undo-action (for the menu)"
 
-    history size = 0 ifTrue:[^ '* nothing to undo *'].
+    history size == 0 ifTrue:[^ '* nothing to undo *'].
     ^ history last "actions" type
 
     "Created: / 30.10.2001 / 13:45:28 / cg"