fix: record midi - setSelectedMidiInputId, snapToScale persist, space stops recording

This commit is contained in:
2026-07-25 18:37:02 +07:00
parent 1151f1afa0
commit 513a6b082c
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -7134,6 +7134,10 @@ const App = () => {
// Global space play/pause shortcut for transport
if (e.key === ' ' || e.code === 'Space') {
e.preventDefault();
if (recordingState === 'RECORDING' || recordingState === 'COUNT_IN') {
handleRecordClick();
return;
}
if (handlePlayPauseRef.current) handlePlayPauseRef.current();
return;
}
File diff suppressed because one or more lines are too long