Skip to content
Snippets Groups Projects
Commit 5aeb4f9b authored by Max Klinger's avatar Max Klinger Committed by Yorhel
Browse files

change wording when deleting empty directory

parent 078369b8
No related branches found
No related tags found
No related merge requests found
...@@ -46,7 +46,7 @@ static void delete_draw_confirm() { ...@@ -46,7 +46,7 @@ static void delete_draw_confirm() {
ncprint(1, 2, "Are you sure you want to delete \"%s\"%c", ncprint(1, 2, "Are you sure you want to delete \"%s\"%c",
cropstr(root->name, 21), root->flags & FF_DIR ? ' ' : '?'); cropstr(root->name, 21), root->flags & FF_DIR ? ' ' : '?');
if(root->flags & FF_DIR) if(root->flags & FF_DIR && root->sub != NULL)
ncprint(2, 18, "and all of its contents?"); ncprint(2, 18, "and all of its contents?");
if(seloption == 0) if(seloption == 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment