summaryrefslogtreecommitdiff
path: root/CHANGELOG
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2024-11-23 19:34:00 +0100
committerJonas Bernoulli <jonas@bernoul.li>2024-11-23 19:34:00 +0100
commitc93c35f567289dbb4d12eb9ec43ef024ee6c78df (patch)
tree218f5bfa1e733d8f9ccbdf8cb9d0fe8f2694ca16 /CHANGELOG
parent3b28a2f8d6672eb210ef7fa0392c2a9132ff53b0 (diff)
transient--show: Fix window height for more setups
It is desirable to set `window-size-fixed' to t in the transient menu, as we always used to do, until very recently. We cannot do this when the transient window uses the full height of the frame, the minibuffer may be used while the menu remains displayed, and the height of the minibuffer has to be increased so that the completion framework can display completion candidates. If `transient-hide-during-minibuffer-read' is t [1], then that cannot happen, so we fix the size in that case again. [1] Which is the default, starting with the parent of this commit. Re #532.
Diffstat (limited to 'CHANGELOG')
-rw-r--r--CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 641cc4c..544042c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -22,6 +22,8 @@
default. Customize ~transient-hide-during-minibuffer-read~ if you
prefer the old default.
+- Further refinements to when the size of the menu window is fixed.
+
Bug fixes:
- Fixes some menu navigation edge-cases.