diff options
author | Iain Holmes <iain@src.gnome.org> | 2001-10-13 06:12:21 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2001-10-13 06:12:21 +0800 |
commit | 74d8c78022be3b37edb80876e8a21aed3323a0af (patch) | |
tree | a9a084f11ab0919959d66d96f94d5baeb521bec6 /shell/e-shell-importer.c | |
parent | 1bd22eb65b2d1fa1cb8a589871337290c1cb258f (diff) | |
download | gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar.gz gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar.bz2 gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar.lz gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar.xz gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.tar.zst gsoc2013-evolution-74d8c78022be3b37edb80876e8a21aed3323a0af.zip |
Fix strings and the importer window not drawing correctly
svn path=/trunk/; revision=13636
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r-- | shell/e-shell-importer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c index eeda75024f..2e94553053 100644 --- a/shell/e-shell-importer.c +++ b/shell/e-shell-importer.c @@ -718,8 +718,14 @@ prepare_intelligent_page (GnomeDruid *druid, data->importerpage->prepared = TRUE; dialog = gnome_message_box_new (_("Please wait...\nScanning for existing setups"), GNOME_MESSAGE_BOX_INFO, NULL); + e_make_widget_backing_stored (dialog); + gtk_window_set_title (GTK_WINDOW (dialog), _("Starting Intelligent Importers")); gtk_widget_show_all (dialog); + + gtk_widget_queue_draw (dialog); + gdk_flush (); + while (gtk_events_pending ()) { gtk_main_iteration (); } |