diff options
Diffstat (limited to 'exwm-floating.el')
-rw-r--r-- | exwm-floating.el | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/exwm-floating.el b/exwm-floating.el index ea68cb500b8b..af11b877b9c6 100644 --- a/exwm-floating.el +++ b/exwm-floating.el @@ -340,11 +340,7 @@ context of the corresponding buffer.") exwm--frame exwm-workspace--current)) ;; Only show X windows in normal state. (unless (exwm-layout--iconic-state-p) - ;; Show it in the selected Emacs window but skip the mini-window. - (let ((window (or (minibuffer-selected-window) - (frame-selected-window exwm-workspace--current)))) - (set-window-buffer window buffer) - (select-window window)))) + (pop-to-buffer-same-window buffer))) (with-current-buffer (exwm--id->buffer id) (run-hooks 'exwm-floating-exit-hook))) |