branch: externals/ivy-posframe
commit c24f548888fad5d7ee4176d645d5e8eb681bac35
Author: conao3 <con...@gmail.com>
Commit: conao3 <con...@gmail.com>

    fix #34.
    call ivy--minibuffer-setup
    in env ivy-fixed-height-minibuffer is nil
---
 ivy-posframe.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ivy-posframe.el b/ivy-posframe.el
index aa677d0..008808c 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