1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 17:11:12 +02:00

Fix for bug #777...OnKeyUp was not being called

This commit is contained in:
lllucius
2014-12-04 07:40:29 +00:00
parent 3029c1dd3c
commit 556a425467

View File

@@ -1101,6 +1101,7 @@ BEGIN_EVENT_TABLE(NumericTextCtrl, wxControl)
EVT_MENU_RANGE(ID_MENU, ID_MENU+100, NumericTextCtrl::OnMenu)
EVT_MOUSE_EVENTS(NumericTextCtrl::OnMouse)
EVT_KEY_DOWN(NumericTextCtrl::OnKeyDown)
EVT_KEY_UP(NumericTextCtrl::OnKeyUp)
EVT_SET_FOCUS(NumericTextCtrl::OnFocus)
EVT_KILL_FOCUS(NumericTextCtrl::OnFocus)
EVT_COMMAND(wxID_ANY, EVT_CAPTURE_KEY, NumericTextCtrl::OnCaptureKey)