2006-01-09 [wwp] 1.9.100cvs127
authorTristan Chabredier <wwp@claws-mail.org>
Mon, 9 Jan 2006 10:02:04 +0000 (10:02 +0000)
committerTristan Chabredier <wwp@claws-mail.org>
Mon, 9 Jan 2006 10:02:04 +0000 (10:02 +0000)
* src/prefs_themes.c
made the prefs/display/themes layouts spacing less condensed
(and so they match other prefs/pages' look).

ChangeLog
PATCHSETS
configure.ac
src/prefs_themes.c

index 248f4517cd8d24ce391cb833b1367ac2ccae5416..54fcc8e0fd204fb74b7cdb620eda7e74cdaa2159 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-01-09 [wwp]       1.9.100cvs127
+
+       * src/prefs_themes.c
+               made the prefs/display/themes layouts spacing less condensed
+               (and so they match other prefs/pages' look).
+
 2006-01-09 [paul]      1.9.100cvs126
 
        * src/compose.c
index c7322738b849eb5e23e93ed0b3838419b9509b11..957e2ec6dd6fde970d1134b66a4acd7b8b6aed89 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.207.2.79 -r 1.207.2.80 src/folderview.c;  ) > 1.9.100cvs124.patchset
 ( cvs diff -u -r 1.382.2.213 -r 1.382.2.214 src/compose.c;  ) > 1.9.100cvs125.patchset
 ( cvs diff -u -r 1.382.2.214 -r 1.382.2.215 src/compose.c;  cvs diff -u -r 1.204.2.71 -r 1.204.2.72 src/prefs_common.c;  cvs diff -u -r 1.103.2.38 -r 1.103.2.39 src/prefs_common.h;  cvs diff -u -r 1.1.2.9 -r 1.1.2.10 src/prefs_wrapping.c;  ) > 1.9.100cvs126.patchset
+( cvs diff -u -r 1.3.2.33 -r 1.3.2.34 src/prefs_themes.c;  ) > 1.9.100cvs127.patchset
index c441b379e54666f61734f61d33dc637010b92fed..5db8a026044478cb9617f1b7d8cb82c6d6af88b9 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=100
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=126
+EXTRA_VERSION=127
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 24aeb92d6f6f59b8fa72cfa8e99443bb79c53b0e..963bad4db992c81f40d8110502ddc3fe1338443b 100644 (file)
@@ -848,12 +848,14 @@ static void prefs_themes_create_widget(PrefsPage *page, GtkWindow *window, gpoin
        GtkWidget *btn_use;
        GtkWidget *btn_remove;
 
-       vbox1 = gtk_vbox_new (FALSE, 0);
+       vbox1 = gtk_vbox_new (FALSE, VSPACING);
+       gtk_container_set_border_width (GTK_CONTAINER (vbox1), VBOX_BORDER);
        gtk_widget_show (vbox1);
 
        PACK_FRAME (vbox1, frame1, _("Selector"));
 
-       vbox2 = gtk_vbox_new (FALSE, 0);
+       vbox2 = gtk_vbox_new (FALSE, VSPACING);
+       gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
        gtk_widget_show (vbox2);
        gtk_container_add (GTK_CONTAINER (frame1), vbox2);