From: Colin Leroy Date: Sun, 28 Dec 2008 16:23:08 +0000 (+0000) Subject: 2008-12-28 [colin] 3.7.0cvs5 X-Git-Tag: rel_3_7_1~76 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=dded85d85b831e999c076c1f935eb4764315624e 2008-12-28 [colin] 3.7.0cvs5 * src/compose.c Set minimum height to 440 instead of 480 --- diff --git a/ChangeLog b/ChangeLog index 07a94df7d..e966ab47f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-28 [colin] 3.7.0cvs5 + + * src/compose.c + Set minimum height to 440 instead of 480 + 2008-12-22 [colin] 3.7.0cvs4 * src/compose.c diff --git a/PATCHSETS b/PATCHSETS index 8ed4b0c7a..f4393b3fe 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -3666,3 +3666,4 @@ ( cvs diff -u -r 1.100.2.64 -r 1.100.2.65 AUTHORS; cvs diff -u -r 1.1.2.52 -r 1.1.2.53 src/gtk/authors.h; ) > 3.7.0cvs2.patchset ( cvs diff -u -r 1.1.2.17 -r 1.1.2.18 tools/claws.i18n.status.pl; ) > 3.7.0cvs3.patchset ( cvs diff -u -r 1.382.2.490 -r 1.382.2.491 src/compose.c; ) > 3.7.0cvs4.patchset +( cvs diff -u -r 1.382.2.491 -r 1.382.2.492 src/compose.c; ) > 3.7.0cvs5.patchset diff --git a/configure.ac b/configure.ac index 4889ebdad..0182e4217 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=7 MICRO_VERSION=0 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=4 +EXTRA_VERSION=5 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/compose.c b/src/compose.c index e07c67f8f..0b0d65cdf 100644 --- a/src/compose.c +++ b/src/compose.c @@ -6772,7 +6772,7 @@ static Compose *compose_create(PrefsAccount *account, &geometry, GDK_HINT_MAX_SIZE); if (!geometry.min_width) { geometry.min_width = 600; - geometry.min_height = 480; + geometry.min_height = 440; } gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry, GDK_HINT_MIN_SIZE);