diff options
| author | Connor Lane Smith <[email protected]> | 2011-10-25 20:01:18 +0100 |
|---|---|---|
| committer | Connor Lane Smith <[email protected]> | 2011-10-25 20:01:18 +0100 |
| commit | 2b625eb73ed48ce671e497c60b61f4411c50c817 (patch) | |
| tree | f197052d5ccf19186c2f28372420f97f08d50ad8 | |
| parent | applied Connors cleanup patch of Eckehards proposed fix of applyrules(), than... (diff) | |
| download | seiwm-2b625eb73ed48ce671e497c60b61f4411c50c817.tar.xz seiwm-2b625eb73ed48ce671e497c60b61f4411c50c817.zip | |
hide clients to the left, not the right
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1597,7 +1597,7 @@ showhide(Client *c) { } else { /* hide clients bottom up */ showhide(c->snext); - XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); + XMoveWindow(dpy, c->win, c->w * -2, c->y); } } |