fix: mouse wheel zoom on previewer
parent
e410272e6b
commit
fcb115f42d
|
@ -260,7 +260,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
wheelMove(event) {
|
wheelMove(event) {
|
||||||
this.scale += (event.wheelDeltaY / 100) * this.zoomStep;
|
this.scale += -Math.sign(event.deltaY) * this.zoomStep;
|
||||||
this.setZoom();
|
this.setZoom();
|
||||||
},
|
},
|
||||||
setZoom() {
|
setZoom() {
|
||||||
|
|
Loading…
Reference in New Issue