Merge pull request #292 from PhilHudson/master

Fix raise-tag when there are no groups.
This commit is contained in:
David 2024-11-29 10:58:20 -05:00 committed by GitHub
commit 07a9b0b627
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,8 +182,11 @@
((window (car (select-by-tags tag))))
(if window
(progn
(move-windows-to-group (list window))
(really-raise-window window)
(if (groups)
(progn
(move-windows-to-group (list window))
(really-raise-window window))
(raise-window window))
window)
nil)))