diff options
| author | Abhinav <abhinav.prsai@gmail.com> | 2025-07-21 16:47:10 +0100 |
|---|---|---|
| committer | Abhinav <abhinav.prsai@gmail.com> | 2025-07-21 16:47:10 +0100 |
| commit | 717c6ceb74e0f99263cd164c31e766b6a30eaee4 (patch) | |
| tree | f174e058a3a14d5ff0832621602afb1e4783e16d /src/sxwm.c | |
| parent | e9152df9c02efb6337f1bed1779d3b100b56f0e2 (diff) | |
fix scratchpad windows cant tile after releasing them
Diffstat (limited to 'src/sxwm.c')
| -rw-r--r-- | src/sxwm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1877,10 +1877,14 @@ void remove_scratchpad(int n) if (c->win) { XMapWindow(dpy, c->win); + c->mapped = True; } scratchpads[n].client = NULL; scratchpads[n].enabled = False; + + update_net_client_list(); + update_borders(); } void resize_master_add(void) |
