diff options
author | Bert Münnich <ber.t@posteo.de> | 2014-08-18 12:45:32 +0200 |
---|---|---|
committer | Bert Münnich <ber.t@posteo.de> | 2014-08-18 12:45:32 +0200 |
commit | fe3a1e326fed155239f125c1322c0b9c4e7b56d0 (patch) | |
tree | 0d3bcdcc0fe7ea4bf3f7600534c2ad579aa6a12e /main.c | |
parent | d0ba2c585d966959c02c6d8ddc2365222d310ae6 (diff) |
Further simplified thumbnail marks
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |