diff options
| -rw-r--r-- | openbox/action.c | 6 |
1 files 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; |
