about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--dwm.113
-rw-r--r--event.c19
2 files changed, 18 insertions, 14 deletions
diff --git a/dwm.1 b/dwm.1
index a411978..96dd8d3 100644
--- a/dwm.1
+++ b/dwm.1
@@ -33,7 +33,7 @@ prints version information to standard output, then exits.
 .SH USAGE
 .TP
 .B Mod1-Return
-Zoom
+Zoom current
 .B window
 to the 
 .B master
@@ -92,12 +92,19 @@ to current
 .B window.
 .TP
 .B Mod1-Button1
-Moves current
+Move current
 .B window
 while dragging.
 .TP
+.B Mod1-Button2
+Zoom current
+.B window
+to the 
+.B master
+column.
+.TP
 .B Mod1-Button3
-Resizes current
+Resize current
 .B window
 while dragging.
 .SH CUSTOMIZATION
diff --git a/event.c b/event.c
index 0f984f2..36d873f 100644
--- a/event.c
+++ b/event.c
@@ -122,25 +122,22 @@ buttonpress(XEvent *e)
 		}
 	}
 	else if((c = getclient(ev->window))) {
+		higher(c);
 		focus(c);
 		switch(ev->button) {
 		default:
 			break;
 		case Button1:
-			if(!c->ismax) {
-				if(arrange == dofloat || c->isfloat) {
-					higher(c);
-					movemouse(c);
-				}
-				else
-					zoom(NULL);
-			}
+			if(!c->ismax && (arrange == dofloat || c->isfloat))
+				movemouse(c);
+			break;
+		case Button2:
+			if(!c->ismax && arrange != dofloat && !c->isfloat)
+				zoom(NULL);
 			break;
 		case Button3:
-			if(!c->ismax && (arrange == dofloat || c->isfloat)) {
-				higher(c);
+			if(!c->ismax && (arrange == dofloat || c->isfloat))
 				resizemouse(c);
-			}
 			break;
 		}
 	}
s.lua?id=91ce333ae0f617ef4eb6638faf66bbe159f25a0d'>^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67