From fe3a1e326fed155239f125c1322c0b9c4e7b56d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= Date: Mon, 18 Aug 2014 12:45:32 +0200 Subject: [PATCH] Further simplified thumbnail marks --- Makefile | 2 +- main.c | 2 +- thumbs.c | 8 +++----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 599a2b6..04915b6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = git-20140817 +VERSION = git-20140818 PREFIX = /usr/local MANPREFIX = $(PREFIX)/share/man diff --git a/main.c b/main.c index e5d31f9..070d419 100644 --- a/main.c +++ b/main.c @@ -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); diff --git a/thumbs.c b/thumbs.c index 0257073..908c3a2 100644 --- a/thumbs.c +++ b/thumbs.c @@ -430,10 +430,8 @@ void tns_mark(tns_t *tns, int n, bool mark) else col = win->bgcol; - win_draw_rect(win, t->x - 4, t->y - 4, 4, 4, true, 1, col); - win_draw_rect(win, t->x + t->w, t->y - 4, 4, 4, true, 1, col); - win_draw_rect(win, t->x - 4, t->y + t->h, 4, 4, true, 1, col); - win_draw_rect(win, t->x + t->w, t->y + t->h, 4, 4, true, 1, col); + win_draw_rect(win, t->x + t->w - 1, t->y + t->h + 1, 6, 2, true, 1, col); + win_draw_rect(win, t->x + t->w + 1, t->y + t->h - 1, 2, 6, true, 1, col); if (!mark && n == *tns->sel) tns_highlight(tns, n, true); @@ -457,7 +455,7 @@ void tns_highlight(tns_t *tns, int n, bool hl) else col = win->bgcol; - win_draw_rect(win, t->x - 3, t->y - 3, t->w + 6, t->h + 6, false, 2, col); + win_draw_rect(win, t->x - 2, t->y - 2, t->w + 4, t->h + 4, false, 2, col); if (!hl && tns->files[n].marked) tns_mark(tns, n, true);