From: Sergio Villar Senin Date: Mon, 28 Jul 2008 08:38:09 +0000 (+0000) Subject: * Fixes NB#87113, new folder dialog is now modal to move to dialog which is modal... X-Git-Tag: git_migration_finished~1253 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=32a4581451e5347ff97a7663040ce6a4804fa1c2 * Fixes NB#87113, new folder dialog is now modal to move to dialog which is modal to the main/msg windows pmo-trunk-r5165 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 8bae8df..de5e360 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -5479,7 +5479,7 @@ modest_ui_actions_on_move_to (GtkAction *action, /* Create and run the dialog */ dialog = create_move_to_dialog (GTK_WINDOW (win), folder_view, &tree_view); modest_folder_view_select_first_inbox_or_local (MODEST_FOLDER_VIEW (tree_view)); - gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); + modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (dialog)); result = gtk_dialog_run (GTK_DIALOG(dialog)); g_object_ref (tree_view); gtk_widget_destroy (dialog);