diff options
author | Stivvo <stivvo01@gmail.com> | 2020-09-15 12:11:40 +0200 |
---|---|---|
committer | Stivvo <stivvo01@gmail.com> | 2020-09-15 12:28:58 +0200 |
commit | d8f752c9b46f8ef2286cddd45628b6db576b8ddf (patch) | |
tree | 5da83bc691ca270b5c76872238c0c6c545736391 | |
parent | bece225934216f1d047ebecc5b574ed1b15886f2 (diff) |
Keep client tags on unplug
When unplugging a monitor, each client is moved to the same tag number
as before on the new monitor
-rw-r--r-- | dwl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -705,7 +705,7 @@ cleanupmon(struct wl_listener *listener, void *data) c->geom.width, c->geom.height, 0); } if (c->mon == m) - setmon(c, newmon, 0); + setmon(c, newmon, c->tags); } break; } |