mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
Fix bug in model overlay not being shown
This commit is contained in:
parent
0398483bdc
commit
ceca69e584
1 changed files with 2 additions and 1 deletions
|
|
@ -1173,7 +1173,8 @@ interactions. Use window-end-modal to undo."))
|
|||
|
||||
(defmethod window-make-modal ((obj clog-gui-window))
|
||||
(let ((app (connection-data-item obj "clog-gui")))
|
||||
(when (and app (= (modal-count app) 0))
|
||||
(when (and app
|
||||
(<= (modal-count app) 0))
|
||||
(setf (modal-background app) (create-div (body app) :class "w3-overlay"))
|
||||
(setf (display (modal-background app)) :block))
|
||||
(incf (modal-count app))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue