Further simplified thumbnail marks

This commit is contained in:
Bert Münnich
2014-08-18 12:45:32 +02:00
parent d0ba2c585d
commit fe3a1e326f
3 changed files with 5 additions and 7 deletions

2
main.c
View File

@ -364,7 +364,7 @@ void update_info(void)
/* update bar contents */
if (win.bar.h == 0)
return;
mark = files[fileidx].marked ? "* " : "";
mark = files[fileidx].marked ? "+ " : "";
if (mode == MODE_THUMB) {
if (tns.loadnext >= filecnt) {
n = snprintf(rt, rlen, "%s%0*d/%d", mark, fw, fileidx + 1, filecnt);