diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-12 01:30:45 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-12 01:30:45 +0800 |
commit | 78c24066fa069be873416f14a413d2ce6e2a0660 (patch) | |
tree | 2e3fffdba0361e2ee34f1dacffe8791b69d2e1b3 /shell/main.c | |
parent | 7d445c8d25362392208f93e215e8c4cd1b4bdc33 (diff) | |
download | gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar.gz gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar.bz2 gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar.lz gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar.xz gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.tar.zst gsoc2013-evolution-78c24066fa069be873416f14a413d2ce6e2a0660.zip |
BugĀ 604520 - Create first account window hidden behind main window
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/main.c b/shell/main.c index 38384d879a..465fe7daa4 100644 --- a/shell/main.c +++ b/shell/main.c @@ -445,8 +445,6 @@ create_default_shell (void) g_object_unref (client); - g_idle_add ((GSourceFunc) idle_cb, remaining_args); - return shell; } @@ -606,6 +604,8 @@ main (gint argc, gchar **argv) * as both shell backends and certain plugins hook into this. */ e_shell_migrate_attempt (shell); + g_idle_add ((GSourceFunc) idle_cb, remaining_args); + gtk_main (); /* Drop what should be the last reference to the shell. |