all repos — openbox @ ba747518bb400a02e43b69602d90e39dea0ea9a3

openbox fork - make it a bit more like ryudo

don't resize the label to 0
Dana Jansens danakj@orodu.net
commit

ba747518bb400a02e43b69602d90e39dea0ea9a3

parent

62e36ad0410ce888e7097e7bce5cbbf67b5b6290

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M openbox/frame.copenbox/frame.c

@@ -862,10 +862,12 @@ match the changes */

if (focus_cycle_target == self->client) focus_cycle_update_indicator(self->client); } - if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR)) + if (resized && (self->decorations & OB_FRAME_DECOR_TITLEBAR) && + self->label_width) + { XResizeWindow(ob_display, self->label, self->label_width, ob_rr_theme->label_height); - + } } static void frame_adjust_cursors(ObFrame *self)