mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-09 15:50:21 +00:00
* lisp/tab-bar.el (tab-bar-mouse-move-tab): Don't drag tab to itself.
This commit is contained in:
parent
04716ca48f
commit
ace4ce16a3
@ -362,8 +362,9 @@ at the mouse-down event to the position at mouse-up event."
|
||||
(to (tab-bar--key-to-number
|
||||
(nth 0 (tab-bar--event-to-item
|
||||
(event-end event))))))
|
||||
(unless (or (eq from t) (eq to t))
|
||||
(tab-bar-move-tab-to to from))))
|
||||
(unless (or (eq from to) (eq from t) (eq to t))
|
||||
(tab-bar-move-tab-to
|
||||
(if (null to) (1+ (tab-bar--current-tab-index)) to) from))))
|
||||
|
||||
(defvar tab-bar-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
|
Loading…
Reference in New Issue
Block a user