From 09f875751e898932c6bafbea7efe692f6aa70f9c Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Fri, 23 Jan 2009 18:22:47 +0000 Subject: [PATCH] New folder dialog shows local folders as default parent (fixes NB#99049). pmo-trunk-r7275 --- src/modest-ui-actions.c | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 021a1bb..95b920a 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -3357,22 +3357,12 @@ modest_ui_actions_create_folder(GtkWidget *parent_window, TnyFolderStore *parent_folder; #ifdef MODEST_TOOLKIT_HILDON2 - const gchar *active_account; - TnyAccount *account; ModestTnyAccountStore *acc_store; - /* In hildon 2.2 we use the current account as default parent */ acc_store = modest_runtime_get_account_store (); - active_account = modest_window_get_active_account (MODEST_WINDOW (parent_window)); - if (active_account) { - account = modest_tny_account_store_get_server_account (acc_store, - active_account, - TNY_ACCOUNT_TYPE_STORE); - parent_folder = TNY_FOLDER_STORE (account); - } else { - parent_folder = (TnyFolderStore *) - modest_tny_account_store_get_local_folders_account (acc_store); - } + + parent_folder = (TnyFolderStore *) + modest_tny_account_store_get_local_folders_account (acc_store); #else parent_folder = modest_folder_view_get_selected (MODEST_FOLDER_VIEW(folder_view)); #endif -- 1.7.9.5