mirror of
https://github.com/rabbibotton/clog.git
synced 2026-03-03 12:23:34 -08:00
Merge pull request #285 from jingtaozf/main
Check if the z-index returns an empty value safely.
This commit is contained in:
commit
cdeca170f8
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