summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2014-11-27 22:23:14 +0100
committerBert Münnich <ber.t@posteo.de>2014-11-27 22:23:14 +0100
commit728a2d931fc2fd987cf2618a849291d32d2cd6df (patch)
tree71007e46136891e54903d40509eeb17a1a1537a5
parent1439b845449a5b0905db729e463ac180fbc2761e (diff)
downloadnsxiv-728a2d931fc2fd987cf2618a849291d32d2cd6df.tar.zst
Limit thumbnail selection border width to 4px
-rw-r--r--Makefile2
-rw-r--r--thumbs.c1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1537e56..11eced0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION := 1.3.1
+VERSION := git-20141127
PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man
diff --git a/thumbs.c b/thumbs.c
index ff368ea..e44f055 100644
--- a/thumbs.c
+++ b/thumbs.c
@@ -600,6 +600,7 @@ bool tns_zoom(tns_t *tns, int d)
tns->zl = MIN(tns->zl, ARRLEN(thumb_sizes)-1);
tns->bw = ((thumb_sizes[tns->zl] - 1) >> 5) + 1;
+ tns->bw = MIN(tns->bw, 4);
tns->dim = thumb_sizes[tns->zl] + 2 * tns->bw + 6;
if (tns->zl != oldzl) {