ncdu: Do not quit on Esc

This commit is contained in:
Katia Esposito 2024-04-05 22:21:58 +02:00 committed by Nick Craig-Wood
parent 2cff5514aa
commit 79c00879ff
1 changed files with 3 additions and 2 deletions

View File

@ -114,7 +114,8 @@ func helpText() (tr []string) {
" ^L refresh screen (fix screen corruption)",
" r recalculate file sizes",
" ? to toggle help on and off",
" q/ESC/^c to quit",
" ESC to close the menu box",
" q/^c to quit",
}...)
return
}
@ -990,7 +991,7 @@ outer:
}
switch c {
case key(tcell.KeyEsc), key(tcell.KeyCtrlC), 'q':
if u.showBox {
if u.showBox || c == key(tcell.KeyEsc) {
u.showBox = false
} else {
break outer