[project @ 2004-04-12 19:40:57 by rjw]

Theme height now reported as 2 OS units larger.

svn path=/import/netsurf/; revision=762
This commit is contained in:
Richard Wilson 2004-04-12 19:40:57 +00:00
parent 8be63e7828
commit 7d165500d3

View File

@ -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;
}