summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-04-12 19:40:57 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-04-12 19:40:57 +0000
commit7d165500d35292a5e09ba0182464ebfc65f56fb7 (patch)
treef884b5ef91e1897036419645ee75099b851a86a9
parent8be63e7828553e03cf44ae6d681ab82c48a22eca (diff)
downloadnetsurf-7d165500d35292a5e09ba0182464ebfc65f56fb7.tar.gz
netsurf-7d165500d35292a5e09ba0182464ebfc65f56fb7.tar.bz2
[project @ 2004-04-12 19:40:57 by rjw]
Theme height now reported as 2 OS units larger. svn path=/import/netsurf/; revision=762
-rw-r--r--riscos/theme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/theme.c b/riscos/theme.c
index 0fef10376..941318b03 100644
--- a/riscos/theme.c
+++ b/riscos/theme.c
@@ -129,7 +129,7 @@ wimp_w ro_theme_create_toolbar(char *url_buffer, char *status_buffer,
int ro_theme_toolbar_height(void)
{
- return abs(theme_toolbar_template->extent.y1 - theme_toolbar_template->extent.y0);
+ return abs(theme_toolbar_template->extent.y1 - theme_toolbar_template->extent.y0) + 2;
}