diff options
author | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 10:16:12 +0200 |
---|---|---|
committer | Anselm R.Garbe <arg@10ksloc.org> | 2006-08-10 10:16:12 +0200 |
commit | b79b5facb104a653314577bb7f15824396b9e94b (patch) | |
tree | a145b85cb026c7965b27b3db9ae3bcf0fdaa63bb /client.c | |
parent | c53f0fca912e05cddcfbf79d99678b16d183c67d (diff) | |
download | dwm-b79b5facb104a653314577bb7f15824396b9e94b.tar.gz |
disallow zoom on maximized clients
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/client.c b/client.c index f92df83..f268623 100644 --- a/client.c +++ b/client.c @@ -197,13 +197,6 @@ killclient(Arg *arg) } void -lower(Client *c) -{ - XLowerWindow(dpy, c->title); - XLowerWindow(dpy, c->win); -} - -void manage(Window w, XWindowAttributes *wa) { Client *c; |