Make delta-lock 'V' key work on hover as well.

This commit is contained in:
Charles J. Cliffe 2016-02-17 20:49:36 -05:00
parent 86bd74e59a
commit 63917c95f3
1 changed files with 3 additions and 0 deletions

View File

@ -1828,6 +1828,9 @@ int AppFrame::OnGlobalKeyUp(wxKeyEvent &event) {
waterfallCanvas->OnKeyUp(event);
return 1;
case 'V':
if (wxGetApp().getDemodMgr().getActiveDemodulator()) {
lastDemod = wxGetApp().getDemodMgr().getActiveDemodulator();
}
if (lastDemod && lastDemod->isDeltaLock()) {
lastDemod->setDeltaLock(false);
} else if (lastDemod) {