about summary refs log tree commit diff stats
path: root/BUGS
diff options
context:
space:
mode:
Diffstat (limited to 'BUGS')
-rw-r--r--BUGS45
1 files changed, 31 insertions, 14 deletions
diff --git a/BUGS b/BUGS
index de83186..17f196e 100644
--- a/BUGS
+++ b/BUGS
@@ -1,34 +1,40 @@
+---
+
 18:17 < Biolunar> when i change my resolution in dwm (to a smaller one) and then back to the native, the top bar is not repainted. that's since 5.7.2, in 5.6 it worked fine
 18:19 < Biolunar> is it just happening to me or a (known) bug?
 18:24 < Biolunar> and in addition, mplayers fullscreen is limited to the small resolution after i changed it back to the native
 
 reproducible with xrandr -s but not with --output and --mode, strange
 
+---
 
 > enternotify is handled even when the entered window is already focused
 > (eg moving the mouse to the bar and back, scrolling on the border..)
-	>
-	> focusing might be expensive for some clients (eg dim/light up)
-	>
-	> a possible solution is to modify enternotify:
-	>
-	> +       c = wintoclient(ev->window);
-	>        if((m = wintomon(ev->window)) && m != selmon) {
-		>                unfocus(selmon->sel);
-		>                selmon = m;
-		>        }
-		> +       else if (c == selmon->sel || c == NULL)
-	> +               return;
-
+>
+> focusing might be expensive for some clients (eg dim/light up)
+>
+> a possible solution is to modify enternotify:
+>
+> +       c = wintoclient(ev->window);
+>        if((m = wintomon(ev->window)) && m != selmon) {
+>                unfocus(selmon->sel);
+>                selmon = m;
+>        }
+> +       else if (c == selmon->sel || c == NULL)
+> +               return;
 
+---
 
 > another corner case:
 
 a tiled client can be resized with mod+right click, but it only works
 on the main monitor
 
+---
+
 dmenu appears on the monitor where the pointer is and not on selmon
 
+---
 
 yet another corner case:
 open a terminal, focus another monitor, but without moving the mouse
@@ -36,7 +42,6 @@ pointer there
 if there is no client on the other monitor to get the focus, then the
 terminal will be unfocused but it will accept input
 
-
 ---
 
 Donald Allen reported this:
@@ -57,3 +62,15 @@ privmail from 2 other people within one week, really strange).
 The quick fix is commenting out the code in lines 817/818 in hg tip 
 dwm. I cannot confirm this has no side effects (I think it does) and I 
 will address this issue shortly with a real fix. 
+
+---
+
+SDL seems to not like non-reparenting WMs:
+
+> I would like to mention SDL problems, however SDL is not crucial to
+> me anymore; people that really care about it should speak up and
+> propose dwm / SDL patch or cooperation scheme in that matter. 
+
+Patching SDL, bugging them?
+
+---
Agaram <vc@akkartik.com> 2019-02-25 00:17:46 -0800 committer Kartik Agaram <vc@akkartik.com> 2019-02-25 01:50:53 -0800 4987 - support `browse_trace` tool in SubX' href='/akkartik/mu/commit/subx/019functions.cc?h=hlt&id=c442a5ad806b6cccbb3ec4c5744b14b0c1f31a01'>c442a5ad ^
222c31db ^
292ccba1 ^

c442a5ad ^

292ccba1 ^


4a943d4e ^



















292ccba1 ^


0f851e48 ^

aa2e2155 ^
4a943d4e ^















292ccba1 ^


c442a5ad ^

292ccba1 ^
c442a5ad ^
292ccba1 ^

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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117