From: Jose Dapena Paz Date: Wed, 30 Apr 2008 15:47:22 +0000 (+0000) Subject: * src/modest-ui-actions.c: X-Git-Tag: git_migration_finished~1402 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=085d14b7a42e5fe235f662901f6c215a3140ba39 * src/modest-ui-actions.c: * Focus folder view on finishing rename operation (fixes NB#85034). * src/widgets/modest-folder-view.c: * Fix focus issue on finishing move to operation with DnD. pmo-trunk-r4492 --- diff --git a/src/modest-ui-actions.c b/src/modest-ui-actions.c index a5eb995..1cb1fef 100644 --- a/src/modest-ui-actions.c +++ b/src/modest-ui-actions.c @@ -3136,6 +3136,7 @@ on_rename_folder_cb (ModestMailOperation *mail_op, } else { modest_folder_view_select_first_inbox_or_local (folder_view); } + gtk_widget_grab_focus (GTK_WIDGET (folder_view)); } static void diff --git a/src/widgets/modest-folder-view.c b/src/widgets/modest-folder-view.c index 2842130..e04d468 100644 --- a/src/widgets/modest-folder-view.c +++ b/src/widgets/modest-folder-view.c @@ -1734,7 +1734,7 @@ xfer_folder_cb (ModestMailOperation *mail_op, if (new_folder) { /* Select the folder */ modest_folder_view_select_folder (MODEST_FOLDER_VIEW (user_data), - new_folder, TRUE); + new_folder, FALSE); } }