From 7ff747e1e661075246b1b3661a6b54cd29b72483 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 13 Feb 2009 01:43:32 +0000 Subject: make statusbar work svn path=/trunk/netsurf/; revision=6465 --- framebuffer/fb_gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'framebuffer/fb_gui.c') diff --git a/framebuffer/fb_gui.c b/framebuffer/fb_gui.c index e8bd74b93..a9c3ed136 100644 --- a/framebuffer/fb_gui.c +++ b/framebuffer/fb_gui.c @@ -303,7 +303,7 @@ struct gui_window *gui_create_browser_window(struct browser_window *bw, g->x = 0; g->y = 30; g->width = framebuffer->width; - g->height = framebuffer->height - 60; + g->height = framebuffer->height - 50; g->bw = bw; if (window_list == NULL) { @@ -457,7 +457,7 @@ void gui_window_update_extent(struct gui_window *g) void gui_window_set_status(struct gui_window *g, const char *text) { LOG(("g %p, text %s", g, text)); - + fb_rootwindow_status(framebuffer, text); } void gui_window_set_pointer(struct gui_window *g, gui_pointer_shape shape) -- cgit v1.2.3