mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2026-06-02 06:04:39 -04:00
Windows install DLLs, fix Windows arrow key input handling
This commit is contained in:
+3
-3
@@ -805,11 +805,11 @@ int CubicSDR::FilterEvent(wxEvent& event) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (event.GetEventType() == wxEVT_KEY_DOWN) {
|
||||
return appframe->OnGlobalKeyDown((wxKeyEvent&)event);
|
||||
if (event.GetEventType() == wxEVT_KEY_DOWN || event.GetEventType() == wxEVT_CHAR_HOOK) {
|
||||
return appframe->OnGlobalKeyDown((wxKeyEvent&)event);
|
||||
}
|
||||
|
||||
if (event.GetEventType() == wxEVT_KEY_UP) {
|
||||
if (event.GetEventType() == wxEVT_KEY_UP || event.GetEventType() == wxEVT_CHAR_HOOK) {
|
||||
return appframe->OnGlobalKeyUp((wxKeyEvent&)event);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user