FIX: [STUDIO-1969] disable mouse wheel on SpinCtrl

Change-Id: I9d568c5fe48defe88c94a476a295143c7089d960
(cherry picked from commit d3ddc246d27ab5f435dd15433f18d5dbc64ed667)
This commit is contained in:
chunmao.guo 2023-01-09 10:34:57 +08:00 committed by lane.wei
parent 1d9f518963
commit 58bda8446e

View File

@ -8,7 +8,7 @@
BEGIN_EVENT_TABLE(SpinInput, wxPanel) BEGIN_EVENT_TABLE(SpinInput, wxPanel)
EVT_KEY_DOWN(SpinInput::keyPressed) EVT_KEY_DOWN(SpinInput::keyPressed)
EVT_MOUSEWHEEL(SpinInput::mouseWheelMoved) //EVT_MOUSEWHEEL(SpinInput::mouseWheelMoved)
EVT_PAINT(SpinInput::paintEvent) EVT_PAINT(SpinInput::paintEvent)