about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorPremysl Hruby <dfenze@gmail.com>2008-08-14 22:35:52 +0200
committerPremysl Hruby <dfenze@gmail.com>2008-08-14 22:35:52 +0200
commit06f7eed103057e55201e143fd319afd4bd410bdb (patch)
tree602b49bbb0b3c00a7320a8f1f1ba1f93ac2a1e3b /dwm.c
parent0ffa6d13939443a84a732f111d483c233b529bbf (diff)
downloaddwm-06f7eed103057e55201e143fd319afd4bd410bdb.tar.gz
fix of XGetTransientForHint in manage()
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/dwm.c b/dwm.c
index d0239f4..8591a7d 100644
--- a/dwm.c
+++ b/dwm.c
@@ -865,7 +865,6 @@ killclient(const Arg *arg) {
 void
 manage(Window w, XWindowAttributes *wa) {
 	Client *c, *t = NULL;
-	Status rettrans;
 	Window trans;
 	XWindowChanges wc;
 
@@ -903,14 +902,14 @@ manage(Window w, XWindowAttributes *wa) {
 	XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
 	grabbuttons(c, False);
 	updatetitle(c);
-	if((rettrans = XGetTransientForHint(dpy, w, &trans)) == Success)
+	if(XGetTransientForHint(dpy, w, &trans))
 		t = getclient(trans);
 	if(t)
 		c->tags = t->tags;
 	else
 		applyrules(c);
 	if(!c->isfloating)
-		c->isfloating = (rettrans == Success) || c->isfixed;
+		c->isfloating = trans || c->isfixed;
 	if(c->isfloating)
 		XRaiseWindow(dpy, c->win);
 	attach(c);
c ^
e9e4b4ff ^

50a0cb1c ^
e9e4b4ff ^
2c5ea01d ^
e9e4b4ff ^


2c5ea01d ^
e9e4b4ff ^




e9e4b4ff ^

2c5ea01d ^
e9e4b4ff ^
0c2c782d ^

6ac4be61 ^
ea775b1c ^








6ac4be61 ^
ea775b1c ^

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
91
92
93
94
95
96
97