diff options
Diffstat (limited to 'src/query_search.c')
-rw-r--r-- | src/query_search.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/query_search.c b/src/query_search.c index 7096a019..0b6170e1 100644 --- a/src/query_search.c +++ b/src/query_search.c @@ -1452,8 +1452,12 @@ static void query_search_move_copy(gboolean is_copy) if (!mlist) return; - dest = foldersel_folder_sel_full(NULL, FOLDER_SEL_MOVE, NULL, - _("Select folder to move")); + if (is_copy) + dest = foldersel_folder_sel_full(NULL, FOLDER_SEL_COPY, NULL, + _("Select folder to copy")); + else + dest = foldersel_folder_sel_full(NULL, FOLDER_SEL_MOVE, NULL, + _("Select folder to move")); if (!dest || dest->stype == F_VIRTUAL || !FOLDER_ITEM_CAN_ADD(dest)) { g_slist_free(mlist); return; |