From a3ad1cff5d7f851e447c1fbb3edf89062a379626 Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Thu, 17 May 2007 14:03:06 +0000 Subject: [PATCH] also remove the border around the notebook pages and add 12 px spacing 2007-05-17 Michael Natterer * app/dialogs/preferences-dialog.c: also remove the border around the notebook pages and add 12 px spacing between the page and its title instead. svn path=/trunk/; revision=22525 --- ChangeLog | 6 ++++++ app/dialogs/preferences-dialog.c | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 87bd1a789b..34624929ce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-05-17 Michael Natterer + + * app/dialogs/preferences-dialog.c: also remove the border around + the notebook pages and add 12 px spacing between the page and its + title instead. + 2007-05-17 Sven Neumann * app/widgets/gimpdockseparator.c: removed period from tooltip. diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c index 84ce3f1759..b5007c6e4e 100644 --- a/app/dialogs/preferences-dialog.c +++ b/app/dialogs/preferences-dialog.c @@ -737,7 +737,6 @@ prefs_notebook_append_page (Gimp *gimp, gimp_help_set_help_data (event_box, NULL, help_id); vbox = gtk_vbox_new (FALSE, 12); - gtk_container_set_border_width (GTK_CONTAINER (vbox), 12); gtk_container_add (GTK_CONTAINER (event_box), vbox); gtk_widget_show (vbox); @@ -1383,7 +1382,7 @@ prefs_dialog_new (Gimp *gimp, gtk_container_add (GTK_CONTAINER (frame), tv); - vbox = gtk_vbox_new (FALSE, 0); + vbox = gtk_vbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (hbox), vbox, TRUE, TRUE, 0); gtk_widget_show (vbox);