Skip to content

Commit 201f158

Browse files
authored
Merge pull request #2107 from lem-project/fix/typeout-window-modeline
fix(window): allow floating-window to display modeline when use-modeline-p is set
2 parents 2d79a23 + 7c8e5a1 commit 201f158

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/window/floating-window.lisp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ If pixel coordinates are nil, frontends may calculate from character units."
9595
:background-color background-color
9696
:border (if use-border 1 0)))
9797

98+
(defmethod window-use-modeline-p ((window floating-window))
99+
(slot-value window 'use-modeline-p))
100+
98101
(defmethod %delete-window ((window floating-window))
99102
(when (eq window (current-window))
100103
(editor-error "Can not delete this window"))

0 commit comments

Comments
 (0)