]> git.eshelyaron.com Git - emacs.git/commitdiff
Update Android port
authorPo Lu <luangruo@yahoo.com>
Tue, 18 Jul 2023 04:16:05 +0000 (12:16 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 18 Jul 2023 04:16:05 +0000 (12:16 +0800)
* lisp/touch-screen.el (touch-screen-handle-touch): Fix
treatment of stray update events.

lisp/touch-screen.el

index 8f10bc3e794b5257d85ad5aba0803506df5b01fc..5606f75204213622fa3894a21316aa7991f7df57 100644 (file)
@@ -850,6 +850,10 @@ the place of EVENT within the key sequence being translated, or
                ;; Start the long-press timer.
                (touch-screen-handle-timeout nil)))))
      ((eq (car event) 'touchscreen-update)
+      (unless touch-screen-current-tool
+        ;; If a stray touchscreen-update event arrives (most likely
+        ;; from the menu bar), stop translating this sequence.
+        (throw 'input-event nil))
       ;; The positions of tools currently pressed against the screen
       ;; have changed.  If there is a tool being tracked as part of a
       ;; gesture, look it up in the list of tools.