Direct commit in master: fix bug with a directory deletion

Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
Slava Zanko 2013-06-12 15:15:57 +03:00
parent 92817a9b60
commit 4b1f94e873
1 changed files with 2 additions and 1 deletions

View File

@ -2450,7 +2450,8 @@ erase_dir (FileOpTotalContext * tctx, FileOpContext * ctx, const vfs_path_t * s_
*/
file_progress_show_deleting (ctx, vfs_path_as_str (s_vpath));
return FILE_ABORT;
if (check_progress_buttons (ctx) == FILE_ABORT)
return FILE_ABORT;
mc_refresh ();