diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 16:35:36 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 16:35:36 +0200 |
commit | 9d39da645277561be4ccec5ce431ef3fd6469c7c (patch) | |
tree | 855682e0e1a148f2b30e63a015d22ecfe6329f53 | |
parent | 0228dcd58f7948c2f5d85e995102b62c9c4a8664 (diff) | |
download | dwm-9d39da645277561be4ccec5ce431ef3fd6469c7c.tar.gz |
togglemax repects inc-hints (this way gvim can be toggle'maxed as well)
-rw-r--r-- | client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client.c b/client.c index 773b8f8..8a139e8 100644 --- a/client.c +++ b/client.c @@ -411,7 +411,7 @@ togglemax(Arg *arg) sel->h = sh - 2 - bh; higher(sel); - resize(sel, False, TopLeft); + resize(sel, True, TopLeft); sel->x = ox; sel->y = oy; |