From ad7fd99f1dd3ce402dfc27c4dbd790234e0b898e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 17 Sep 2003 06:10:29 +0000 Subject: [PATCH] use the theme padding for the menu title's size --- openbox/menuframe.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openbox/menuframe.c b/openbox/menuframe.c index ecd2b590..212a8d9a 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -398,8 +398,10 @@ static void menu_frame_render(ObMenuFrame *self) self->a_title->texture[0].data.text.string = self->menu->title; RrMinsize(self->a_title, &tw, &th); - tw = MIN(tw, MAX_MENU_WIDTH); + tw = MIN(tw, MAX_MENU_WIDTH) + ob_rr_theme->padding * 2; w = MAX(w, tw); + + th = ob_rr_theme->mtitlefont_height + ob_rr_theme->padding * 2; h += (self->title_h = th + ob_rr_theme->bwidth); XSetWindowBorderWidth(ob_display, self->title, ob_rr_theme->bwidth); -- 2.39.2