Yolo_mark icon indicating copy to clipboard operation
Yolo_mark copied to clipboard

Issue with image switching by mouse clicking on Prev and Next buttons

Open Yurasyk opened this issue 5 years ago • 1 comments

It seems there is an issue when you want to move to another image by mouse clicking on Prev or Next buttons displayed in the preview bar. It seems it can be fixed by replacing the code in the 552 line if (add_id_img != 0) trackbar_value += add_id_img; with the code if (add_id_img != 0) { trackbar_value += add_id_img; add_id_img = 0; }

Yurasyk avatar Aug 29 '18 09:08 Yurasyk

I can confirm that this fixes the issue with image scrolling with keyboard, thanks!!!

(my issue was that the scrolling with the keyboard or the cursor was two by two)

I just noticed that now if I press right or left it scrolls trough the images but also moves the cursor of the IDs

gandalfk7 avatar Jan 05 '21 19:01 gandalfk7