mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
Check if the z-index returns an empty value safely.
This commit is contained in:
parent
04d6df5d0b
commit
700169d35a
1 changed files with 2 additions and 1 deletions
|
|
@ -559,7 +559,8 @@ The on-window-change clog-obj received is the new window"))
|
|||
(maphash (lambda (key value)
|
||||
(declare (ignore key))
|
||||
(setf new-order (z-index value))
|
||||
(when (>= new-order order)
|
||||
(when (and new-order
|
||||
(>= new-order order))
|
||||
(setf order new-order)
|
||||
(setf obj value)))
|
||||
(windows app))))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue