mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-15 02:08:40 -09:00
change wording when deleting empty directory
This commit is contained in:
parent
078369b8c5
commit
5aeb4f9b09
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue