mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
Merge pull request #292 from PhilHudson/master
Fix raise-tag when there are no groups.
This commit is contained in:
commit
07a9b0b627
|
|
@ -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)))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue