diff options
Diffstat (limited to 'Userland/Applications/3DFileViewer/main.cpp')
-rw-r--r-- | Userland/Applications/3DFileViewer/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp index 8cef1f408a..2731d16ee3 100644 --- a/Userland/Applications/3DFileViewer/main.cpp +++ b/Userland/Applications/3DFileViewer/main.cpp @@ -132,7 +132,7 @@ void GLContextWidget::resize_event(GUI::ResizeEvent& event) void GLContextWidget::mousemove_event(GUI::MouseEvent& event) { - if (event.buttons() == GUI::MouseButton::Left) { + if (event.buttons() == GUI::MouseButton::Primary) { int delta_x = m_last_mouse.x() - event.x(); int delta_y = m_last_mouse.y() - event.y(); |