From a048c4302aa7c450fe7a97e69c15029eb5459ab2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 31 Mar 2003 20:19:59 +0000 Subject: [PATCH] disallow resizing of windows which are shaded --- openbox/action.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/openbox/action.c b/openbox/action.c index 614b196a..a58441b0 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -301,7 +301,7 @@ void action_resize_relative_horz(union ActionData *data) void action_resize_relative_vert(union ActionData *data) { Client *c = data->relative.c; - if (c) + if (c && !c->shaded) client_configure(c, Corner_TopLeft, c->area.x, c->area.y, c->area.width, c->area.height + data->relative.delta, TRUE, TRUE); @@ -632,10 +632,8 @@ void action_resize(union ActionData *data) int w = data->resize.x; int h = data->resize.y; - if (!c || !client_normal(c)) return; + if (!c || c->shaded || !client_normal(c)) return; - /* XXX window snapping/struts */ - dispatch_resize(c, &w, &h, data->resize.corner); w -= c->frame->size.left + c->frame->size.right; -- 2.39.2