pasting files into directories now properly obeys link_drop

SVN revision: 76391
This commit is contained in:
Mike Blumenkrantz 2012-09-10 10:41:25 +00:00
parent e7147dd081
commit 2c44aabd4d
1 changed files with 14 additions and 2 deletions

View File

@ -3443,8 +3443,20 @@ _e_fm2_file_paste(Evas_Object *obj)
}
/* Roll the operation! */
if (_e_fm_file_buffer_copying) _e_fm_client_file_copy(args, sd->obj);
else _e_fm_client_file_move(args, sd->obj);
if (_e_fm_file_buffer_copying)
{
if (sd->config->view.link_drop)
_e_fm_client_file_symlink(args, sd->obj);
else
_e_fm_client_file_copy(args, sd->obj);
}
else
{
if (sd->config->view.link_drop)
_e_fm_client_file_symlink(args, sd->obj);
else
_e_fm_client_file_move(args, sd->obj);
}
free(args);
}