summaryrefslogtreecommitdiff
path: root/gtk/gtk_window.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-04-21 01:01:59 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-04-21 01:01:59 +0000
commit03c1e930bed5a8985eaa05cc6889f4b38df7a1db (patch)
tree57941efdf5626ce3db9400eb4ec31cf10ddc12d6 /gtk/gtk_window.c
parentfe86c4a618ed491be3b3e191a50a4f10b1c11400 (diff)
downloadnetsurf-03c1e930bed5a8985eaa05cc6889f4b38df7a1db.tar.gz
netsurf-03c1e930bed5a8985eaa05cc6889f4b38df7a1db.tar.bz2
Reflow to the entire widget width, rather than leaving a 2px border on the right side. I've no idea why this was needed, but it looks odd.
svn path=/trunk/netsurf/; revision=7142
Diffstat (limited to 'gtk/gtk_window.c')
-rw-r--r--gtk/gtk_window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtk_window.c b/gtk/gtk_window.c
index 7b8fe5ec1..ba138d0c8 100644
--- a/gtk/gtk_window.c
+++ b/gtk/gtk_window.c
@@ -626,7 +626,7 @@ void nsgtk_window_process_reformats(void)
continue;
g->bw->reformat_pending = false;
browser_window_reformat(g->bw,
- widget->allocation.width - 2,
+ widget->allocation.width,
widget->allocation.height);
}
}