all repos — openbox @ 50f2037aea7f0edea11ad2d5749ca22e4fc7d734

openbox fork - make it a bit more like ryudo

bugz, wrong vars
Dana Jansens danakj@orodu.net
commit

50f2037aea7f0edea11ad2d5749ca22e4fc7d734

parent

6486ba2cd5a8011cbe624a9d3e96f461ae5a7cc6

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

jump to
M render/theme.crender/theme.c

@@ -146,14 +146,16 @@

/* load direct dimensions */ if (!read_int(db, "menuOverlap", &theme->menu_overlap) || theme->menu_overlap < 0 || theme->menu_overlap > 20) - theme->handle_height = 0; + theme->menu_overlap = 0; if (!read_int(db, "handleWidth", &theme->handle_height) || theme->handle_height < 0 || theme->handle_height > 100) - theme->handle_height = 6; + theme->handle_height = 3; if (!read_int(db, "bevelWidth", &theme->bevel) || - theme->bevel <= 0 || theme->bevel > 100) theme->bevel = 3; + theme->bevel <= 0 || theme->bevel > 100) + theme->bevel = 3; if (!read_int(db, "borderWidth", &theme->bwidth) || - theme->bwidth < 0 || theme->bwidth > 100) theme->bwidth = 1; + theme->bwidth < 0 || theme->bwidth > 100) + theme->bwidth = 1; if (!read_int(db, "frameWidth", &theme->cbwidth) || theme->cbwidth < 0 || theme->cbwidth > 100) theme->cbwidth = theme->bevel;