1
1

Added spaces around the path in browser.c (debian bug #472194)

git-svn-id: svn://blicky.net/ncdu/trunk@38 ce56bc8d-f834-0410-b703-f827bd498a76
Этот коммит содержится в:
yorhel 2008-08-02 18:29:35 +00:00
родитель c306d3fe3b
Коммит 4fdebc82d5

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

@ -171,7 +171,10 @@ void drawBrowser(int change) {
attroff(A_REVERSE);
mvhline(1, 0, '-', wincols);
mvaddstr(1, 3, cropdir(getpath(bcur, tmp), wincols-5));
mvaddch(1, 3, ' ');
getpath(bcur, tmp);
mvaddstr(1, 4, cropdir(tmp, wincols-8));
mvaddch(1, 4+(strlen(tmp) > wincols-8 ? wincols-8 : strlen(tmp)), ' ');
/* make sure the items are in correct order */
if(!(bflags & BF_SORT)) {