aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorgarbeam@gmail.com2011-07-01 17:56:53 +0100
committergarbeam@gmail.com2011-07-01 17:56:53 +0100
commit5817f1db1d2b8fd5f7535d1de04e23a03a7a75f4 (patch)
treeefd63e52c800f52a37adc771f368d7b397b25a83 /dwm.c
parent30b257b36ea7b00254233ae6256deb7980b6575e (diff)
downloadaur-5817f1db1d2b8fd5f7535d1de04e23a03a7a75f4.tar.gz
applied Nicolas Capit's patch as interim solution until the multiscreen support is reworked in 6.0
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index a2582f1ae602..f842b419221e 100644
--- a/dwm.c
+++ b/dwm.c
@@ -442,7 +442,7 @@ buttonpress(XEvent *e) {
}
else if(ev->x < x + blw)
click = ClkLtSymbol;
- else if(ev->x > selmon->wx + selmon->ww - TEXTW(stext))
+ else if(ev->x > selmon->ww - TEXTW(stext))
click = ClkStatusText;
else
click = ClkWinTitle;