Browse Source

ComboBox: Fix for scrolling over a dropdown.
It doesn't need to propagate the MouseWhile event to the parent.

YuSanka 1 year ago
parent
commit
00a08831a7
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/slic3r/GUI/Widgets/ComboBox.cpp

+ 0 - 1
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;