mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
ncdu: Do not quit on Esc
This commit is contained in:
parent
2cff5514aa
commit
79c00879ff
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user