summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/ImageEditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/PixelPaint/ImageEditor.cpp')
-rw-r--r--Userland/Applications/PixelPaint/ImageEditor.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/ImageEditor.cpp b/Userland/Applications/PixelPaint/ImageEditor.cpp
index 72f0574e9f..9718bfd3c6 100644
--- a/Userland/Applications/PixelPaint/ImageEditor.cpp
+++ b/Userland/Applications/PixelPaint/ImageEditor.cpp
@@ -267,6 +267,8 @@ GUI::MouseEvent ImageEditor::event_with_pan_and_scale_applied(GUI::MouseEvent co
event.modifiers(),
event.wheel_delta_x(),
event.wheel_delta_y(),
+ event.wheel_raw_delta_x(),
+ event.wheel_raw_delta_y(),
};
}
@@ -282,6 +284,8 @@ GUI::MouseEvent ImageEditor::event_adjusted_for_layer(GUI::MouseEvent const& eve
event.modifiers(),
event.wheel_delta_x(),
event.wheel_delta_y(),
+ event.wheel_raw_delta_x(),
+ event.wheel_raw_delta_y(),
};
}