Skip to content

Commit

Permalink
Fix for #11640 - Can't mousewheel scroll through drop-down menus anymore
Browse files Browse the repository at this point in the history
Note: Related code was just mistakenly commented
  • Loading branch information
YuSanka committed Nov 13, 2023
1 parent 0ebb854 commit c179e82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/slic3r/GUI/Widgets/ComboBox.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

BEGIN_EVENT_TABLE(ComboBox, TextInput)

EVT_LEFT_DOWN(ComboBox::mouseDown)
//EVT_MOUSEWHEEL(ComboBox::mouseWheelMoved)
EVT_LEFT_DOWN(ComboBox::mouseDown)
EVT_MOUSEWHEEL(ComboBox::mouseWheelMoved)
EVT_KEY_DOWN(ComboBox::keyDown)

// catch paint events
Expand Down

0 comments on commit c179e82

Please sign in to comment.