summaryrefslogtreecommitdiff
path: root/framebuffer
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2009-02-26 15:17:13 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2009-02-26 15:17:13 +0000
commitfb975c8987e47f65ecc4ae1f67eaed0adbf1c912 (patch)
tree2c18d20dbe9487d9de2b39e2a575bb7a6628ea35 /framebuffer
parent1d75559b2a31b7180f32d6e5379027adec84b643 (diff)
downloadnetsurf-fb975c8987e47f65ecc4ae1f67eaed0adbf1c912.tar.gz
netsurf-fb975c8987e47f65ecc4ae1f67eaed0adbf1c912.tar.bz2
Tweak URL bar size and position.
svn path=/trunk/netsurf/; revision=6634
Diffstat (limited to 'framebuffer')
-rw-r--r--framebuffer/fb_rootwindow.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/framebuffer/fb_rootwindow.c b/framebuffer/fb_rootwindow.c
index 1ec5aa918..a6ab1aab7 100644
--- a/framebuffer/fb_rootwindow.c
+++ b/framebuffer/fb_rootwindow.c
@@ -143,8 +143,8 @@ fb_redraw_widget(struct fb_widget *widget)
1, 0x00000000, false, false);
}
if (widget->text != NULL) {
- plot.text(fb_plot_ctx.x0 + 2,
- fb_plot_ctx.y0 + 15,
+ plot.text(fb_plot_ctx.x0 + 3,
+ fb_plot_ctx.y0 + 17,
&root_style,
widget->text,
strlen(widget->text),
@@ -243,7 +243,7 @@ fb_add_button_widget(int x,
new_widget->click = click_rtn;
new_widget->bitmap = widget_image;
-
+
fb_insert_widget(new_widget);
return new_widget;
@@ -420,7 +420,7 @@ void fb_rootwindow_create(framebuffer_t *fb)
fb->width -
(newwidget->x + newwidget->width + 5) -
(25 + 10),
- 22,
+ 24,
FB_COLOUR_WHITE, true,
fb_widget_url_input);