Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2020-03-03 12:09:41 +0300
committerbubnikv <bubnikv@gmail.com>2020-03-03 12:09:41 +0300
commitd0b0f946ccf1cd07415160cd44a6b4b56e189201 (patch)
treef9921dd65955839138319eec74941b5132c96b47
parentaaaeafcdeb6c28e01dbed6b63589314789268d76 (diff)
Test: disable suppressing of the mouse wheel event from the 3DConnexion driver.vb_3dconnexion_wheel_test
-rw-r--r--src/slic3r/GUI/GLCanvas3D.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp
index a6eee73e8..05cbe2914 100644
--- a/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/src/slic3r/GUI/GLCanvas3D.cpp
@@ -3084,8 +3084,8 @@ void GLCanvas3D::on_mouse_wheel(wxMouseEvent& evt)
{
// try to filter out events coming from mouse 3d
Mouse3DController& controller = wxGetApp().plater()->get_mouse3d_controller();
- if (controller.process_mouse_wheel())
- return;
+// if (controller.process_mouse_wheel())
+// return;
if (!m_initialized)
return;