summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
Diffstat (limited to 'riscos')
-rw-r--r--riscos/theme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/riscos/theme.h b/riscos/theme.h
index 1bc9de07c..eb96d2c6b 100644
--- a/riscos/theme.h
+++ b/riscos/theme.h
@@ -174,10 +174,10 @@ int ro_gui_theme_height_change(struct toolbar *toolbar);
struct toolbar_icon *ro_gui_theme_toolbar_get_icon(struct toolbar *toolbar, int x, int y);
-#define ro_gui_theme_toolbar_height(toolbar) toolbar->height + \
+#define ro_gui_theme_toolbar_height(toolbar) (toolbar->height + \
(toolbar->editor ? toolbar->editor->height : 0) > toolbar->max_height ? \
toolbar->max_height : toolbar->height + \
- (toolbar->editor ? toolbar->editor->height : 0)
-#define ro_gui_theme_toolbar_full_height(toolbar) toolbar->height + \
- (toolbar->editor ? toolbar->editor->height : 0)
+ (toolbar->editor ? toolbar->editor->height : 0))
+#define ro_gui_theme_toolbar_full_height(toolbar) (toolbar->height + \
+ (toolbar->editor ? toolbar->editor->height : 0))
#endif