File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/app-frontend/src/features Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ export default {
174
174
<div
175
175
@mouseenter =" queueOpen()"
176
176
@mouseleave =" queueClose()"
177
- @mousewheel =" onMouseWheel"
177
+ @wheel =" onMouseWheel"
178
178
@click.capture =" toggle()"
179
179
>
180
180
<slot name =" trigger" >
@@ -199,7 +199,7 @@ export default {
199
199
class =" flex flex-col"
200
200
@mouseenter =" queueOpen()"
201
201
@mouseleave =" queueClose()"
202
- @mousewheel =" onMouseWheel"
202
+ @wheel =" onMouseWheel"
203
203
>
204
204
<VueDropdownButton
205
205
v-for =" (item, index) of items"
Original file line number Diff line number Diff line change @@ -571,6 +571,7 @@ export default {
571
571
572
572
if (event .ctrlKey || event .metaKey ) {
573
573
// Zoom
574
+ // Firefox doesn't block the event https://bugzilla.mozilla.org/show_bug.cgi?id=1632465
574
575
event .preventDefault ()
575
576
576
577
const centerRatio = event .offsetX / viewWidth
@@ -668,7 +669,7 @@ export default {
668
669
<div
669
670
ref =" wrapper"
670
671
class =" relative overflow-hidden"
671
- @mousewheel =" onMouseWheel"
672
+ @wheel =" onMouseWheel"
672
673
@mousemove =" onMouseMove"
673
674
@mouseout =" onMouseOut"
674
675
>
You can’t perform that action at this time.
0 commit comments