applied sander's patch
This commit is contained in:
parent
00255728aa
commit
4bd0d33f57
13
dwm.1
13
dwm.1
@ -33,7 +33,7 @@ prints version information to standard output, then exits.
|
|||||||
.SH USAGE
|
.SH USAGE
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Return
|
.B Mod1-Return
|
||||||
Zoom
|
Zoom current
|
||||||
.B window
|
.B window
|
||||||
to the
|
to the
|
||||||
.B master
|
.B master
|
||||||
@ -92,12 +92,19 @@ to current
|
|||||||
.B window.
|
.B window.
|
||||||
.TP
|
.TP
|
||||||
.B Mod1-Button1
|
.B Mod1-Button1
|
||||||
Moves current
|
Move current
|
||||||
.B window
|
.B window
|
||||||
while dragging.
|
while dragging.
|
||||||
.TP
|
.TP
|
||||||
|
.B Mod1-Button2
|
||||||
|
Zoom current
|
||||||
|
.B window
|
||||||
|
to the
|
||||||
|
.B master
|
||||||
|
column.
|
||||||
|
.TP
|
||||||
.B Mod1-Button3
|
.B Mod1-Button3
|
||||||
Resizes current
|
Resize current
|
||||||
.B window
|
.B window
|
||||||
while dragging.
|
while dragging.
|
||||||
.SH CUSTOMIZATION
|
.SH CUSTOMIZATION
|
||||||
|
15
event.c
15
event.c
@ -122,25 +122,22 @@ buttonpress(XEvent *e)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if((c = getclient(ev->window))) {
|
else if((c = getclient(ev->window))) {
|
||||||
|
higher(c);
|
||||||
focus(c);
|
focus(c);
|
||||||
switch(ev->button) {
|
switch(ev->button) {
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
case Button1:
|
case Button1:
|
||||||
if(!c->ismax) {
|
if(!c->ismax && (arrange == dofloat || c->isfloat))
|
||||||
if(arrange == dofloat || c->isfloat) {
|
|
||||||
higher(c);
|
|
||||||
movemouse(c);
|
movemouse(c);
|
||||||
}
|
break;
|
||||||
else
|
case Button2:
|
||||||
|
if(!c->ismax && arrange != dofloat && !c->isfloat)
|
||||||
zoom(NULL);
|
zoom(NULL);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case Button3:
|
case Button3:
|
||||||
if(!c->ismax && (arrange == dofloat || c->isfloat)) {
|
if(!c->ismax && (arrange == dofloat || c->isfloat))
|
||||||
higher(c);
|
|
||||||
resizemouse(c);
|
resizemouse(c);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user