Skip to content

Commit

Permalink
Try to fix #11
Browse files Browse the repository at this point in the history
  • Loading branch information
casouri committed Feb 9, 2019
1 parent 6f18d01 commit 5a9ceec
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions eldoc-box.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 5a9ceec

Please sign in to comment.