From 00a08831a7a50448235d3495d778233716517093 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Wed, 10 Jan 2024 12:28:07 +0100 Subject: [PATCH] ComboBox: Fix for scrolling over a dropdown. It doesn't need to propagate the MouseWhile event to the parent. --- src/slic3r/GUI/Widgets/ComboBox.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/slic3r/GUI/Widgets/ComboBox.cpp b/src/slic3r/GUI/Widgets/ComboBox.cpp index 055971571a..52f0f6afdf 100644 --- a/src/slic3r/GUI/Widgets/ComboBox.cpp +++ b/src/slic3r/GUI/Widgets/ComboBox.cpp @@ -294,7 +294,6 @@ void ComboBox::mouseDown(wxMouseEvent &event) void ComboBox::mouseWheelMoved(wxMouseEvent &event) { - event.Skip(); if (drop_down) return; auto delta = ((event.GetWheelRotation() < 0) == event.IsWheelInverted()) ? -1 : 1; unsigned int n = GetSelection() + delta;