summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/openbox/obtheme.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/openbox/obtheme.c b/engines/openbox/obtheme.c
index c4ec31fb..6653501a 100644
--- a/engines/openbox/obtheme.c
+++ b/engines/openbox/obtheme.c
@@ -328,7 +328,8 @@ gboolean obtheme_load()
}
if (!read_int(db, "handleWidth", &ob_s_handle_height) ||
- ob_s_handle_height < 0 || ob_s_handle_height > 100) ob_s_handle_height = 6;
+ ob_s_handle_height < 0 || ob_s_handle_height > 100)
+ ob_s_handle_height = 6;
if (!read_int(db, "bevelWidth", &ob_s_bevel) ||
ob_s_bevel <= 0 || ob_s_bevel > 100) ob_s_bevel = 3;
if (!read_int(db, "borderWidth", &ob_s_bwidth) ||