1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-02 16:49:41 +02:00

Bug 1727 - Spacebar may not start / stop playback

Fix proposed by David Bailes.
This commit is contained in:
James Crook 2017-08-28 22:50:19 +01:00
parent 75bdde3003
commit 059139bb6d

View File

@ -1369,7 +1369,9 @@ bool CommandManager::FilterKeyEvent(AudacityProject *project, const wxKeyEvent &
case WXK_RIGHT:
case WXK_UP:
case WXK_DOWN:
case WXK_SPACE:
// Don't trap WXK_SPACE (Bug 1727 - SPACE not starting/stopping playback
// when cursor is in a time control)
// case WXK_SPACE:
case WXK_TAB:
case WXK_BACK:
case WXK_HOME: