From: Mikael Magnusson Date: Mon, 31 Mar 2008 17:20:55 +0000 (+0200) Subject: Center the moveresize popup even when shaded. X-Git-Tag: mikabox-3.4.7.2~45 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=6d5167ded6c570758bae5b86ba3c8433a3564bcb;p=mikachu%2Fopenbox.git Center the moveresize popup even when shaded. --- diff --git a/openbox/moveresize.c b/openbox/moveresize.c index cbae2851..b45df742 100644 --- a/openbox/moveresize.c +++ b/openbox/moveresize.c @@ -109,10 +109,8 @@ static void popup_coords(ObClient *c, const gchar *format, gint a, gint b) c->frame->area.y - ob_rr_theme->fbwidth); else if (config_resize_popup_pos == OB_RESIZE_POS_CENTER) popup_position(popup, CenterGravity, - c->frame->area.x + c->frame->size.left + - c->area.width / 2, - c->frame->area.y + c->frame->size.top + - c->area.height / 2); + c->frame->area.x + c->frame->area.width / 2, + c->frame->area.y + c->frame->area.height / 2); else /* Fixed */ { Rect *area = screen_physical_area_active(); gint gravity, x, y;