From: Colin Leroy Date: Thu, 10 Nov 2005 17:46:53 +0000 (+0000) Subject: 2005-11-10 [colin] 1.9.100cvs7 X-Git-Tag: rel_2_0_0~215 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=415cc095cfb766db08867c3e2aec2b653e9ad7ae 2005-11-10 [colin] 1.9.100cvs7 * src/main.c Fix bug #845 (sylpheed-claws 1.9.99+ start in minimised state) --- diff --git a/ChangeLog b/ChangeLog index ca8387ba2..cd8bccf1c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-11-10 [colin] 1.9.100cvs7 + + * src/main.c + Fix bug #845 (sylpheed-claws 1.9.99+ start in + minimised state) + 2005-11-10 [wwp] 1.9.100cvs6 * src/gtk/description_window.c diff --git a/PATCHSETS b/PATCHSETS index c21d0e6de..1f667518e 100644 --- a/PATCHSETS +++ b/PATCHSETS @@ -990,3 +990,4 @@ ( cvs diff -u -r 1.382.2.192 -r 1.382.2.193 src/compose.c; cvs diff -u -r 1.96.2.83 -r 1.96.2.84 src/textview.c; cvs diff -u -r 1.36.2.47 -r 1.36.2.48 src/common/utils.c; cvs diff -u -r 1.20.2.26 -r 1.20.2.27 src/common/utils.h; ) > 1.9.100cvs4.patchset ( cvs diff -u -r 1.9.2.10 -r 1.9.2.11 src/common/ssl.c; ) > 1.9.100cvs5.patchset ( cvs diff -u -r 1.5.2.14 -r 1.5.2.15 src/gtk/description_window.c; ) > 1.9.100cvs6.patchset +( cvs diff -u -r 1.115.2.67 -r 1.115.2.68 src/main.c; ) > 1.9.100cvs7.patchset diff --git a/configure.ac b/configure.ac index 78fdecafe..b974111cd 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=100 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=6 +EXTRA_VERSION=7 EXTRA_RELEASE= EXTRA_GTK2_VERSION= diff --git a/src/main.c b/src/main.c index ea961d78d..0869b66d2 100644 --- a/src/main.c +++ b/src/main.c @@ -461,7 +461,7 @@ int main(int argc, char *argv[]) exit_sylpheed(mainwin); } - gtk_window_deiconify(GTK_WINDOW(mainwin->window)); + main_window_popup(mainwin); #ifdef HAVE_LIBETPAN imap_main_init();