aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/main.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-10-11 08:28:38 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-10-11 08:28:38 +0000
commitce8e4aa47c6becbd62ebb58c18ebf86d7957a356 (patch)
treee0f980f4cea87c708d3c6199dd702d7d7cdb7e6f /gtk/main.c
parent074e49fd41af86f3cb11b69fe40fef6fef16351b (diff)
Don't add a border around the main window, this looks bad in the new
Ubuntu release. svn path=/trunk/; revision=34468
Diffstat (limited to 'gtk/main.c')
-rw-r--r--gtk/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 9687401faa..45d8447cdf 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -3607,7 +3607,7 @@ create_main_window (gint pl_size, gint tv_size, gint bv_size, e_prefs *prefs_p)
/* Vertical container for menu bar, toolbar(s), paned windows and progress/info box */
main_vbox = gtk_vbox_new(FALSE, 1);
- gtk_container_set_border_width(GTK_CONTAINER(main_vbox), 1);
+ gtk_container_set_border_width(GTK_CONTAINER(main_vbox), 0);
gtk_container_add(GTK_CONTAINER(top_level), main_vbox);
gtk_widget_show(main_vbox);