Introduction
Introduction Statistics Contact Development Disclaimer Help
tchanging snap priority - dwm - [fork] customized build of dwm, the dynamic win…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 99785382ae6d4b20e8baf33542059e466e0b3c7c
parent dc1690ce0fac57ef4c8cd3f0e833cfa07411830f
Author: arg@mig29 <unknown>
Date: Mon, 30 Oct 2006 12:07:00 +0100
changing snap priority
Diffstat:
M event.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/event.c b/event.c
t@@ -50,11 +50,11 @@ movemouse(Client *c) {
c->y = ocy + (ev.xmotion.y - y1);
if(abs(c->x) < sx + SNAP)
c->x = sx;
+ else if(c->x + c->w > sx + sw - SNAP)
+ c->x = sw - c->w - 2 * BORDERPX;
if(abs(c->y) < sy + bh + SNAP)
c->y = sy + bh;
- if(c->x + c->w > sx + sw - SNAP)
- c->x = sw - c->w - 2 * BORDERPX;
- if(c->y + c->h > sy + sh - SNAP)
+ else if(c->y + c->h > sy + sh - SNAP)
c->y = sh - c->h - 2 * BORDERPX;
resize(c, False, TopLeft);
break;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.