summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
Diffstat (limited to 'render')
-rw-r--r--render/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/theme.c b/render/theme.c
index 8051a3af..6635207f 100644
--- a/render/theme.c
+++ b/render/theme.c
@@ -1198,7 +1198,7 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name,
RrMargins(theme->a_focused_label, &fl, &ft, &fr, &fb);
RrMargins(theme->a_unfocused_label, &ul, &ut, &ur, &ub);
theme->label_height = theme->win_font_height + MAX(ft + fb, ut + ub);
- theme->label_height += theme->label_height % 2;
+ theme->label_height += theme->label_height & 1;
/* this would be nice I think, since padding.width can now be 0,
but it breaks frame.c horribly and I don't feel like fixing that