From 6abd9fe80192a2a19b563f20302412520e13b57d Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 17 Mar 2003 07:28:48 +0000 Subject: [PATCH] set the size of the label properly --- engines/openbox/openbox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engines/openbox/openbox.c b/engines/openbox/openbox.c index b7785634..3fccd233 100644 --- a/engines/openbox/openbox.c +++ b/engines/openbox/openbox.c @@ -12,8 +12,8 @@ #include #include -#define TITLE_HEIGHT (s_winfont_height + s_bevel * 2) #define LABEL_HEIGHT (s_winfont_height) +#define TITLE_HEIGHT (LABEL_HEIGHT + s_bevel * 2) #define HANDLE_Y(f) (f->innersize.top + f->frame.client->area.height + \ f->cbwidth) #define BUTTON_SIZE (LABEL_HEIGHT - 2) @@ -636,7 +636,7 @@ static void layout_title(ObFrame *self) if (self->label_width < 1) self->label_width = 1; XResizeWindow(ob_display, self->label, self->label_width, - s_winfont_height); + LABEL_HEIGHT); if (!n) { self->frame.client->decorations &= ~Decor_Icon; -- 2.39.2