1
1

Pressing q while the info box is shown now hides the box, instead of quiting ncdu

git-svn-id: svn://blicky.net/ncdu/trunk@44 ce56bc8d-f834-0410-b703-f827bd498a76
Этот коммит содержится в:
yorhel 2008-10-19 08:02:02 +00:00
родитель 57be9e2905
Коммит 6f2d258354

Просмотреть файл

@ -481,7 +481,10 @@ void showBrowser(void) {
bcur = bcur->parent->sub;
break;
case 'q':
goto endloop;
if(bflags & BF_INFO)
bflags -= BF_INFO;
else
goto endloop;
}
if((last != bcur || (oldflags | BF_HIDE | BF_AS | BF_INFO) != (bflags | BF_HIDE | BF_AS | BF_INFO)) && bflags & BF_SORT)
bflags -= BF_SORT;