tapplied Hiltjos' BUGS patch from 23 Mar, sorry took a while :) - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 3c48858ffada0825b62e52ac14b1feba4b7654a4
(DIR) parent dd46d5b588dc5d33940bde87817f3e8d608788d4
(HTM) Author: Anselm R Garbe <anselm@garbe.us>
Date: Fri, 25 Mar 2011 13:57:54 +0000
applied Hiltjos' BUGS patch from 23 Mar, sorry took a while :)
Diffstat:
M BUGS | 7 -------
M dwm.c | 2 +-
2 files changed, 1 insertion(+), 8 deletions(-)
---
(DIR) diff --git a/BUGS b/BUGS
t@@ -25,13 +25,6 @@ reproducible with xrandr -s but not with --output and --mode, strange
---
-> 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
---
(DIR) diff --git a/dwm.c b/dwm.c
t@@ -1202,7 +1202,7 @@ movemouse(const Arg *arg) {
case MotionNotify:
nx = ocx + (ev.xmotion.x - x);
ny = ocy + (ev.xmotion.y - y);
- if(snap && nx >= selmon->wx && nx <= selmon->wx + selmon->ww
+ if(nx >= selmon->wx && nx <= selmon->wx + selmon->ww
&& ny >= selmon->wy && ny <= selmon->wy + selmon->wh) {
if(abs(selmon->wx - nx) < snap)
nx = selmon->wx;