diff options
author | arg@10ksloc.org <unknown> | 2006-07-19 13:52:31 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-07-19 13:52:31 +0200 |
commit | 8af1d973323bd799c1ec021bb7c16860e120cf92 (patch) | |
tree | 47a5d675ab8a444317aaf25a6d2776b0eae7413b /event.c | |
parent | 79cd408844c62963aa0eec45bb0414ed66f06f6f (diff) | |
download | dwm-8af1d973323bd799c1ec021bb7c16860e120cf92.tar.gz |
refactored Sanders code somewhat
Diffstat (limited to 'event.c')
-rw-r--r-- | event.c | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/event.c b/event.c index 9d69373..e4dfad1 100644 --- a/event.c +++ b/event.c @@ -114,17 +114,10 @@ resizemouse(Client *c) *c->h = abs(ocy - ev.xmotion.y); *c->x = (ocx <= ev.xmotion.x) ? ocx : ocx - *c->w; *c->y = (ocy <= ev.xmotion.y) ? ocy : ocy - *c->h; - if(ocx <= ev.xmotion.x) { - if(ocy <= ev.xmotion.y) - sticky = TopLeft; - else - sticky = BottomLeft; - } else { - if(ocy <= ev.xmotion.y) - sticky = TopRight; - else - sticky = BottomRight; - } + if(ocx <= ev.xmotion.x) + sticky = (ocy <= ev.xmotion.y) ? TopLeft : BotLeft; + else + sticky = (ocy <= ev.xmotion.y) ? TopRight : BotRight; resize(c, True, sticky); break; case ButtonRelease: |