summaryrefslogtreecommitdiffstats
path: root/thumbs.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-07-17 22:18:09 +0200
committerBert <ber.t@gmx.com>2011-07-17 22:18:09 +0200
commit5f780fc3e77aef1f1b87fdd6662a7caee6efbc3b (patch)
tree340451c78fab811cdfc0d211f037ccd4b7ae15f6 /thumbs.c
parent0a171a9c8b10b47d9267714670c611c415c3e804 (diff)
downloadnsxiv-5f780fc3e77aef1f1b87fdd6662a7caee6efbc3b.tar.zst
Made selection border in thumb mode 3px wide
Diffstat (limited to 'thumbs.c')
-rw-r--r--thumbs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thumbs.c b/thumbs.c
index 9bf4864..75663cb 100644
--- a/thumbs.c
+++ b/thumbs.c
@@ -373,8 +373,8 @@ void tns_highlight(tns_t *tns, win_t *win, int n, Bool hl) {
else
col = win->bgcol;
- win_draw_rect(win, win->pm, t->x - 2, t->y - 2, t->w + 4, t->h + 4,
- False, 2, col);
+ win_draw_rect(win, win->pm, t->x - 3, t->y - 3, t->w + 5, t->h + 5,
+ False, 3, col);
}
win_draw(win);