- removed annoying message

with the current stumpwm in master using globalwindow you get a message like:
  "That window is already in the group default"
  This quick patch fix that.
This commit is contained in:
cage 2020-01-30 16:42:10 +01:00
parent 2f59028b65
commit 73340def80

View file

@ -48,6 +48,9 @@ select the screen."
(with-global-windowlist global-windowlist "Like windowlist, but for all groups not just the current one."
(goto-window window))
(with-global-windowlist global-pull-windowlist "Global windowlist for pulling windows to the current frame."
(move-window-to-group window (current-group))
(with-global-windowlist global-pull-windowlist
"Global windowlist for pulling windows to the current frame."
(when (not (equalp (window-group window)
(current-group)))
(move-window-to-group window (current-group)))
(pull-window window))