react-pdf-viewer icon indicating copy to clipboard operation
react-pdf-viewer copied to clipboard

Issue on zoom out with mouse Wheel

Open Alvarrito opened this issue 2 years ago • 2 comments

Hello, I have found an issue when zoom out with the mouse Wheel. When I do zoom In it is ok (from 100% to 225%) but when zoom out is not ok (from 100% to -25%, negative percentage).

Thanks

Alvarrito avatar Jun 28 '23 14:06 Alvarrito

Thank for reporting the issue, @Alvarrito 👍

phuocng avatar Jun 29 '23 09:06 phuocng

In zoom.js it would help changing the line

var scaleDiff = 1 - e.deltaY / 100;

to

var scaleDiff = Math.pow(0.9, e.deltaY * -0.01);

or something similar. With this, the zoom factor cannot get negative anymore.

MeKo-Christian avatar Oct 13 '23 11:10 MeKo-Christian