From 5e5d062f32d1e7ba1037ef1c2ec629106f997335 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 22 May 2007 17:47:21 +0000 Subject: [PATCH] merge r6571 from trunk --- openbox/frame.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/openbox/frame.c b/openbox/frame.c index 0db84406..c9a15f9f 100644 --- a/openbox/frame.c +++ b/openbox/frame.c @@ -446,12 +446,14 @@ void frame_adjust_area(ObFrame *self, gboolean moved, self->width - ob_rr_theme->grip_width *2, ob_rr_theme->paddingy + 1); - XMoveWindow(ob_display, self->tltresize, 0, 0); - XMoveWindow(ob_display, self->tllresize, 0, 0); + XMoveWindow(ob_display, self->tltresize, self->bwidth, 0); + XMoveWindow(ob_display, self->tllresize, self->bwidth, 0); XMoveWindow(ob_display, self->trtresize, - self->width - ob_rr_theme->grip_width, 0); + self->bwidth + self->width - + ob_rr_theme->grip_width, 0); XMoveWindow(ob_display, self->trrresize, - self->width - ob_rr_theme->paddingx - 1, 0); + self->bwidth + self->width - + ob_rr_theme->paddingx - 1, 0); XMapWindow(ob_display, self->topresize); XMapWindow(ob_display, self->tltresize); -- 2.34.1