From 288098893c1502629fb8f23c43f2821af1c469c3 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Thu, 22 Feb 2007 11:09:44 +0100 Subject: removed button4/5-bindings for incnmaster on mode label - that is misleading --- dwm.1 | 6 ------ event.c | 8 -------- 2 files changed, 14 deletions(-) diff --git a/dwm.1 b/dwm.1 index 5cee3f0..25ec66b 100644 --- a/dwm.1 +++ b/dwm.1 @@ -45,12 +45,6 @@ label toggles between tiling and versatile layout. .B Button3 click on a tag label adds/removes all windows with that tag to/from the view. .TP -.B Button4 -click on the layout label increases the number of windows in the master area (tiling layout only). -.TP -.B Button5 -click on the layout label decreases the number of windows in the master area (tiling layout only). -.TP .B Mod1-Button1 click on a tag label applies that tag to the focused window. .TP diff --git a/event.c b/event.c index 540aeb6..f765fe1 100644 --- a/event.c +++ b/event.c @@ -143,14 +143,6 @@ buttonpress(XEvent *e) { a.i = -1; setlayout(a); break; - case Button4: - a.i = 1; - incnmaster(a); - break; - case Button5: - a.i = -1; - incnmaster(a); - break; } } else if((c = getclient(ev->window))) { -- cgit 1.4.1-2-gfad0 ref='/akspecs/ranger/log/README?h=v1.9.0b3'>log tree commit diff stats
path: root/README
blob: 8f87298e2a78aaa5aabe043eef20915f6139e011 (plain) (blame)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90