Skip to content

Commit

Permalink
transient--suspend-override: Move out of minibuffer to update menu
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Jan 26, 2024
1 parent 8e043b5 commit 833143b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lisp/transient.el
Original file line number Diff line number Diff line change
Expand Up @@ -2288,7 +2288,10 @@ value. Otherwise return CHILDREN as is."
((and transient--prefix transient--redisplay-key)
(setq transient--redisplay-key nil)
(when transient--showp
(transient--show))))
(if-let ((win (minibuffer-selected-window)))
(with-selected-window win
(transient--show))
(transient--show)))))
(transient--pop-keymap 'transient--transient-map)
(transient--pop-keymap 'transient--redisplay-map)
(remove-hook 'pre-command-hook #'transient--pre-command)
Expand Down

0 comments on commit 833143b

Please sign in to comment.