From 1de5f06f83408243211ba7872a15324fec7e3e01 Mon Sep 17 00:00:00 2001 From: Bert Münnich Date: Sat, 9 Jun 2018 14:06:16 +0200 Subject: Set global markidx whenever a single img is (un)marked This also sets *markidx* when using the right mouse button in thumbnail mode. --- commands.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'commands.c') diff --git a/commands.c b/commands.c index 7c00028..d2917bb 100644 --- a/commands.c +++ b/commands.c @@ -194,7 +194,6 @@ bool cg_zoom(arg_t d) bool cg_toggle_image_mark(arg_t _) { - markidx = fileidx; return mark_image(fileidx, !(files[fileidx].flags & FF_MARK)); } @@ -213,11 +212,11 @@ bool cg_reverse_marks(arg_t _) bool cg_mark_range(arg_t _) { - int i, d = fileidx < markidx ? 1 : -1; + int d = markidx < fileidx ? 1 : -1; bool dirty = false, on = !!(files[markidx].flags & FF_MARK); - for (i = fileidx; i != markidx; i += d) { - if (mark_image(i, on)) + while (markidx != fileidx) { + if (mark_image(markidx + d, on)) dirty = true; } return dirty; -- cgit v1.2.3-70-g09d2