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

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

[elpa] externals/corfu 03e2318 3/6: HACK: Try to fix resizing issue (Fix


From: Protesilaos Stavrou
Subject: [elpa] externals/corfu 03e2318 3/6: HACK: Try to fix resizing issue (Fix #17)
Date: Fri, 30 Apr 2021 13:32:54 -0400 (EDT)

branch: externals/corfu
commit 03e23181dba26ee02201c4e6a1c5a88af3673515
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    HACK: Try to fix resizing issue (Fix #17)
---
 corfu.el | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/corfu.el b/corfu.el
index 7d08dac..4374e5d 100644
--- a/corfu.el
+++ b/corfu.el
@@ -179,6 +179,14 @@ Set to nil in order to disable confirmation."
   "Show child frame at X/Y with WIDTH/HEIGHT and CONTENT."
   (let* ((window-min-height 1)
          (window-min-width 1)
+         (x-gtk-resize-child-frames
+          (and
+           ;; XXX Hack to fix resizing on gtk3/gnome taken from posframe.el
+           ;; See https://github.com/minad/corfu/issues/17
+           (string-match-p "GTK3" system-configuration-features)
+           (string-match-p "GNOME" (or (getenv "XDG_CURRENT_DESKTOP")
+                                       (getenv "DESKTOP_SESSION") ""))
+           'resize-mode))
          (after-make-frame-functions)
          (edge (window-inside-pixel-edges))
          (lh (line-pixel-height))



reply via email to

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