From: Colin Leroy Date: Mon, 22 Nov 2004 08:16:46 +0000 (+0000) Subject: 2004-11-22 [colin] 0.9.12cvs158.5 X-Git-Tag: gtk2_win32_last_merge~72 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=f7261fd0d640dafd4bc129fd0ce740e4a45e1a3f 2004-11-22 [colin] 0.9.12cvs158.5 * src/prefs_themes.c Fix oversized selector --- diff --git a/ChangeLog-gtk2.claws b/ChangeLog-gtk2.claws index f10c48f7b..d0157e6fa 100644 --- a/ChangeLog-gtk2.claws +++ b/ChangeLog-gtk2.claws @@ -1,3 +1,8 @@ +2004-11-22 [colin] 0.9.12cvs158.5 + + * src/prefs_themes.c + Fix oversized selector + 2004-11-22 [colin] 0.9.12cvs158.4 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index b7c78c4b8..e80f97bb4 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -250,3 +250,4 @@ ( cvs diff -u -r 1.5.10.5 -r 1.5.10.6 src/addrgather.c; cvs diff -u -r 1.3.2.5 -r 1.3.2.6 src/exphtmldlg.c; cvs diff -u -r 1.1.4.5 -r 1.1.4.6 src/expldifdlg.c; cvs diff -u -r 1.83.2.24 -r 1.83.2.25 src/mimeview.c; cvs diff -u -r 1.204.2.23 -r 1.204.2.24 src/prefs_common.c; cvs diff -u -r 1.7.2.8 -r 1.7.2.9 src/plugins/image_viewer/viewer.c; cvs diff -u -r 1.23.2.6 -r 1.23.2.7 src/plugins/spamassassin/spamassassin_gtk.c; ) > 0.9.12cvs158.2.patchset ( cvs diff -u -r 1.96.2.35 -r 1.96.2.36 src/textview.c; ) > 0.9.12cvs158.3.patchset ( cvs diff -u -r 1.382.2.69 -r 1.382.2.70 src/compose.c; ) > 0.9.12cvs158.4.patchset +( cvs diff -u -r 1.3.2.12 -r 1.3.2.13 src/prefs_themes.c; ) > 0.9.12cvs158.5.patchset diff --git a/configure.ac b/configure.ac index d98cd3e29..efd2fbfda 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ INTERFACE_AGE=0 BINARY_AGE=0 EXTRA_VERSION=158 EXTRA_RELEASE= -EXTRA_GTK2_VERSION=.4 +EXTRA_GTK2_VERSION=.5 if test \( $EXTRA_VERSION -eq 0 \) -o \( "x$EXTRA_RELEASE" != "x" \); then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}${EXTRA_RELEASE}${EXTRA_GTK2_VERSION} diff --git a/src/prefs_themes.c b/src/prefs_themes.c index 06aad40c5..c4af8fa6a 100644 --- a/src/prefs_themes.c +++ b/src/prefs_themes.c @@ -823,7 +823,7 @@ static void prefs_themes_create_widget(PrefsPage *page, GtkWindow *window, gpoin hbox3 = gtk_hbox_new (FALSE, 0); gtk_widget_show (hbox3); - gtk_box_pack_start (GTK_BOX (vbox2), hbox3, TRUE, TRUE, 0); + gtk_box_pack_start (GTK_BOX (vbox2), hbox3, FALSE, FALSE, 0); gtk_container_set_border_width (GTK_CONTAINER (hbox3), 5); menu_themes = gtk_option_menu_new ();