]> git.eshelyaron.com Git - emacs.git/commitdiff
Make <mouse-3> in the mode line more careful
authorVisuwesh <visuweshm@gmail.com>
Sun, 26 Jun 2022 15:30:04 +0000 (17:30 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 26 Jun 2022 15:30:04 +0000 (17:30 +0200)
* lisp/mouse.el (mouse-delete-window): Only delete the window if
the user hasn't moved point out of the mode line before releasing
the button (bug#56198).

lisp/mouse.el

index 82c8a1469327167e9e3ae555409a4b7534723426..3b33ba817b228a9b5da9d26ec637694c9e8a58d9 100644 (file)
@@ -655,7 +655,13 @@ This command must be bound to a mouse click."
   (interactive "e")
   (unless (one-window-p t)
     (mouse-minibuffer-check click)
-    (delete-window (posn-window (event-start click)))))
+    ;; Only delete the window if the user hasn't moved point out of
+    ;; the mode line before releasing the button.
+    (when (and (eq (posn-area (event-end click))
+                   'mode-line)
+               (eq (posn-window (event-end click))
+                   (posn-window (event-start click))))
+      (delete-window (posn-window (event-start click))))))
 
 (defun mouse-select-window (click)
   "Select the window clicked on; don't move point."