mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-20 15:41:18 +01:00
Fix for bug #777...OnKeyUp was not being called
This commit is contained in:
@@ -1101,6 +1101,7 @@ BEGIN_EVENT_TABLE(NumericTextCtrl, wxControl)
|
|||||||
EVT_MENU_RANGE(ID_MENU, ID_MENU+100, NumericTextCtrl::OnMenu)
|
EVT_MENU_RANGE(ID_MENU, ID_MENU+100, NumericTextCtrl::OnMenu)
|
||||||
EVT_MOUSE_EVENTS(NumericTextCtrl::OnMouse)
|
EVT_MOUSE_EVENTS(NumericTextCtrl::OnMouse)
|
||||||
EVT_KEY_DOWN(NumericTextCtrl::OnKeyDown)
|
EVT_KEY_DOWN(NumericTextCtrl::OnKeyDown)
|
||||||
|
EVT_KEY_UP(NumericTextCtrl::OnKeyUp)
|
||||||
EVT_SET_FOCUS(NumericTextCtrl::OnFocus)
|
EVT_SET_FOCUS(NumericTextCtrl::OnFocus)
|
||||||
EVT_KILL_FOCUS(NumericTextCtrl::OnFocus)
|
EVT_KILL_FOCUS(NumericTextCtrl::OnFocus)
|
||||||
EVT_COMMAND(wxID_ANY, EVT_CAPTURE_KEY, NumericTextCtrl::OnCaptureKey)
|
EVT_COMMAND(wxID_ANY, EVT_CAPTURE_KEY, NumericTextCtrl::OnCaptureKey)
|
||||||
|
|||||||
Reference in New Issue
Block a user