Fix raise-tag when there are no groups.

This commit is contained in:
Phil Hudson 2024-08-08 17:48:28 +01:00
parent 042a9fcb05
commit a3afdd36b5

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)))