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).
This commit is contained in:
Tristan Chabredier 2006-01-09 10:02:04 +00:00
parent ce6d8d87de
commit af705bca9e
4 changed files with 12 additions and 3 deletions

View file

@ -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

View file

@ -1110,3 +1110,4 @@
( 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

View 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=

View 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);