aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-24 17:24:55 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-24 17:24:55 +0100
commit1f18466409aeb40e27b79814247dbda2d40369e2 (patch)
treee434423adaffc2854ba04a4842943e3d61455bcf /client.c
parentb65a1e33793b42f2718ccf6aa81dbd456f3fe7b9 (diff)
downloaddwm-1f18466409aeb40e27b79814247dbda2d40369e2.tar.zst
applied offscreen appearance hotfix
Diffstat (limited to 'client.c')
-rw-r--r--client.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/client.c b/client.c
index b89264c..6a178f8 100644
--- a/client.c
+++ b/client.c
@@ -142,14 +142,14 @@ manage(Window w, XWindowAttributes *wa) {
}
else {
c->border = BORDERPX;
- if(c->x < wax)
- c->x = wax;
- if(c->y < way)
- c->y = way;
if(c->x + c->w + 2 * c->border > wax + waw)
c->x = wax + waw - c->w - 2 * c->border;
if(c->y + c->h + 2 * c->border > way + wah)
c->y = way + wah - c->h - 2 * c->border;
+ if(c->x < wax)
+ c->x = wax;
+ if(c->y < way)
+ c->y = way;
}
updatesizehints(c);
c->proto = getproto(c->win);
@@ -197,14 +197,14 @@ resize(Client *c, Bool sizehints) {
else
c->border = BORDERPX;
/* offscreen appearance fixes */
- if(c->x + c->w + 2 * c->border < sx)
- c->x = sx;
- if(c->y + c->h + 2 * c->border < sy)
- c->y = sy;
if(c->x > sw)
c->x = sw - c->w - 2 * c->border;
if(c->y > sh)
c->y = sh - c->h - 2 * c->border;
+ if(c->x + c->w + 2 * c->border < sx)
+ c->x = sx;
+ if(c->y + c->h + 2 * c->border < sy)
+ c->y = sy;
wc.x = c->x;
wc.y = c->y;
wc.width = c->w;