From: Sergio Villar SenĂ­n Date: Mon, 4 Jan 2010 15:42:00 +0000 (+0100) Subject: Show remote folders in "Move to" dialog when viewing archive folder X-Git-Tag: 3.2.9~5 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=9e1515efeaa670ac6b01d13735fb7afb8dac0a2e Show remote folders in "Move to" dialog when viewing archive folder Fixes NB#151343 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index 1b9a649..fd8c43a 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -1489,7 +1489,8 @@ open_msg_performer(gboolean canceled, gboolean can_open; gchar *account_name = get_info_from_header (helper->header, &is_draft, &can_open); - if (!g_strcmp0 (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID)) { + if (!g_strcmp0 (account_name, MODEST_LOCAL_FOLDERS_ACCOUNT_ID) || + !g_strcmp0 (account_name, MODEST_MMC_ACCOUNT_ID)) { g_free (account_name); account_name = g_strdup (modest_window_get_active_account (MODEST_WINDOW (parent_window))); }