emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/exwm c7d1fd45bc 12/14: Fix layout being refreshed too o


From: ELPA Syncer
Subject: [elpa] externals/exwm c7d1fd45bc 12/14: Fix layout being refreshed too often on minibuffer setup
Date: Wed, 6 Sep 2023 15:57:58 -0400 (EDT)

branch: externals/exwm
commit c7d1fd45bcf586e4b62daa94662dfe529cb04ac9
Author: Adrián Medraño Calvo <adrian@medranocalvo.com>
Commit: Adrián Medraño Calvo <adrian@medranocalvo.com>

    Fix layout being refreshed too often on minibuffer setup
    
    The guard clause was refacored incorrectly, leading to it having
    no effect on the intended forms.
    
    * exwm-layout.el (exwm-layout--on-minibuffer-setup): Guard
    `exwm-layout--refresh' again.
---
 exwm-layout.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exwm-layout.el b/exwm-layout.el
index 56668186ef..d785a71f5e 100644
--- a/exwm-layout.el
+++ b/exwm-layout.el
@@ -408,8 +408,8 @@ selected by `other-buffer'."
          (frame (window-frame mini-window)))
     (when (exwm-workspace--workspace-p frame)
       (exwm--defer 0 (lambda ()
-                       (when (< 1 (window-height mini-window)))
-                       (exwm-layout--refresh frame))))))
+                       (when (< 1 (window-height mini-window))
+                         (exwm-layout--refresh frame)))))))
 
 (defun exwm-layout--on-echo-area-change (&optional dirty)
   "Run when message arrives or in `echo-area-clear-hook' to refresh layout."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]