diff options
| -rw-r--r-- | tabbed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,7 @@ cleanup(void) { int i; - for (i = 0; i < nclients; i++) { + for (i = nclients - 1; i >= 0; i--) { focus(i); killclient(NULL); XReparentWindow(dpy, clients[i]->win, root, 0, 0); |
