mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-01 14:43:48 +01:00
Fix two more 'select' commands which expected to be activated by a keyboard event.
This commit is contained in:
@@ -2978,12 +2978,14 @@ void AudacityProject::OnToggle()
|
||||
|
||||
void AudacityProject::OnCursorLeft(const wxEvent * evt)
|
||||
{
|
||||
OnCursorLeft( false, false, evt->GetEventType() == wxEVT_KEY_UP );
|
||||
bool bKeyUp = (evt) && evt->GetEventType() == wxEVT_KEY_UP;
|
||||
OnCursorLeft( false, false, bKeyUp );
|
||||
}
|
||||
|
||||
void AudacityProject::OnCursorRight(const wxEvent * evt)
|
||||
{
|
||||
OnCursorRight( false, false, evt->GetEventType() == wxEVT_KEY_UP );
|
||||
bool bKeyUp = (evt) && evt->GetEventType() == wxEVT_KEY_UP;
|
||||
OnCursorRight( false, false, bKeyUp );
|
||||
}
|
||||
|
||||
void AudacityProject::OnCursorShortJumpLeft()
|
||||
|
||||
Reference in New Issue
Block a user