tdisallow zoom on maximized clients - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b79b5facb104a653314577bb7f15824396b9e94b
(DIR) parent c53f0fca912e05cddcfbf79d99678b16d183c67d
(HTM) Author: Anselm R.Garbe <arg@10ksloc.org>
Date: Thu, 10 Aug 2006 10:16:12 +0200
disallow zoom on maximized clients
Diffstat:
M client.c | 7 -------
M dwm.1 | 4 ----
M dwm.h | 1 -
M event.c | 17 ++++++++---------
4 files changed, 8 insertions(+), 21 deletions(-)
---
(DIR) diff --git a/client.c b/client.c
t@@ -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;
(DIR) diff --git a/dwm.1 b/dwm.1
t@@ -96,10 +96,6 @@ Moves current
.B window
while dragging.
.TP
-.B Mod1-Button2
-Lowers current
-.B window.
-.TP
.B Mod1-Button3
Resizes current
.B window
(DIR) diff --git a/dwm.h b/dwm.h
t@@ -91,7 +91,6 @@ extern Client *getctitle(Window w);
extern void gravitate(Client *c, Bool invert);
extern void higher(Client *c);
extern void killclient(Arg *arg);
-extern void lower(Client *c);
extern void manage(Window w, XWindowAttributes *wa);
extern void resize(Client *c, Bool sizehints, Corner sticky);
extern void setsize(Client *c);
(DIR) diff --git a/event.c b/event.c
t@@ -127,15 +127,14 @@ buttonpress(XEvent *e)
default:
break;
case Button1:
- if(!c->ismax && (arrange == dofloat || c->isfloat)) {
- higher(c);
- movemouse(c);
+ if(!c->ismax) {
+ if(arrange == dofloat || c->isfloat) {
+ higher(c);
+ movemouse(c);
+ }
+ else
+ zoom(NULL);
}
- else
- zoom(NULL);
- break;
- case Button2:
- lower(c);
break;
case Button3:
if(!c->ismax && (arrange == dofloat || c->isfloat)) {
t@@ -225,7 +224,7 @@ enternotify(XEvent *e)
Client *c;
XCrossingEvent *ev = &e->xcrossing;
- if(ev->detail == NotifyInferior)
+ if(ev->mode != NotifyNormal || ev->detail == NotifyInferior)
return;
if((c = getclient(ev->window)) || (c = getctitle(ev->window)))