#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Fri, 21 Sep 2018 12:37:50 +0200
changeset 6436 210307378a50
parent 6434 d17303a34a4b
child 6437 8cebd063aeb5
#REFACTORING by cg class: EditTextView changed: #executeLearnedKeyboardMacro lastEvent query now answered by dispatchEvent
EditTextView.st
--- a/EditTextView.st	Sat Sep 15 13:38:44 2018 +0200
+++ b/EditTextView.st	Fri Sep 21 12:37:50 2018 +0200
@@ -6535,18 +6535,17 @@
             answer:true
             do:[
                 learnedMacro do:[:event |
-                            WindowGroup lastEventQuerySignal answer:event
-                            do:[
-                                self
-                                    dispatchEvent:event
-                                    withFocusOn:nil
-                                    delegate:false
-                            ]
+                    self
+                        dispatchEvent:event
+                        withFocusOn:nil
+                        delegate:false
                 ]
             ].
     ] ifFalse:[
         self flash:'no macro'.
     ].
+
+    "Modified: / 21-09-2018 / 12:33:38 / Claus Gittinger"
 !
 
 learnMode