diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-17 07:28:48 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-17 07:28:48 +0000 |
| commit | 6abd9fe80192a2a19b563f20302412520e13b57d (patch) | |
| tree | 6fc3dae00dd93deef88a7584db7bcfa0342af05d | |
| parent | 9a2699fa487233b8f0e2e8f130863b9c0a40e849 (diff) | |
set the size of the label properly
| -rw-r--r-- | engines/openbox/openbox.c | 4 |
1 files 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 <X11/Xlib.h> #include <glib.h> -#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; |
