branch: externals/ivy-posframe
commit 13180cedf0083d4bc4d25ff1037e16a033f1cd7d
Merge: 3aabf14 c24f548
Author: tumashu <tuma...@163.com>
Commit: GitHub <nore...@github.com>

    Merge pull request #35 from conao3/fix-minibuffer-issue
    
    fix mini-buffer height issue
---
 ivy-posframe.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ivy-posframe.el b/ivy-posframe.el
index a8863e4..8bd548b 100644
--- a/ivy-posframe.el
+++ b/ivy-posframe.el
@@ -408,7 +408,8 @@ selection, non-nil otherwise."
 
 (defun ivy-posframe--minibuffer-setup (orig-func)
   "Advice function of `ivy--minibuffer-setup'."
-  (funcall orig-func)
+  (let ((ivy-fixed-height-minibuffer nil))
+    (funcall orig-func))
   (when (and ivy-posframe-hide-minibuffer
              ;; only hide minibuffer's info when posframe is showed.
              ivy-posframe--display-p)

Reply via email to