fix: Add configurable shortcut for speed adjustment in TimelineEditor

This commit is contained in:
FabLrc
2026-03-01 23:08:05 +01:00
parent 6ca24c3411
commit 0e082fff9c
2 changed files with 4 additions and 1 deletions
@@ -967,7 +967,7 @@ export default function TimelineEditor({
if (matchesShortcut(e, keyShortcuts.addAnnotation, isMac)) {
handleAddAnnotation();
}
if (e.key === 's' || e.key === 'S') {
if (matchesShortcut(e, keyShortcuts.addSpeed, isMac)) {
handleAddSpeed();
}