From 5a9ceec2839bcfdddcc6c3a6457e92c388f79119 Mon Sep 17 00:00:00 2001 From: Yuan Fu Date: Sat, 9 Feb 2019 15:52:50 -0500 Subject: [PATCH] Try to fix #11 --- eldoc-box.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/eldoc-box.el b/eldoc-box.el index 04049ee..14f88c5 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -67,14 +67,16 @@ in that mode the childframe is cleared as soon as point moves.") "If set to non-nil, eldoc-box clears childframe when you hit \C-g.") (defvar eldoc-box-frame-parameters - '( - ;; (left . -1) + '(;; make the childframe unseen when first created + (left . -1) + (top . -1) + (width . 0) + (height . 0) + (no-accept-focus . t) (no-focus-on-map . t) (min-width . 0) - ;; (width . 0) (min-height . 0) - ;; (height . 0) (internal-border-width . 1) (vertical-scroll-bars . nil) (horizontal-scroll-bars . nil) @@ -84,7 +86,6 @@ in that mode the childframe is cleared as soon as point moves.") (line-spacing . 0) (unsplittable . t) (undecorated . t) - ;; (top . -1) (visibility . nil) (mouse-wheel-frame . nil) (no-other-frame . t)