diff --git a/js/src/features/particles/stream-view.tsx b/js/src/features/particles/stream-view.tsx index 24e2324..b164081 100644 --- a/js/src/features/particles/stream-view.tsx +++ b/js/src/features/particles/stream-view.tsx @@ -101,7 +101,8 @@ const STREAM_VIEW_KEYBINDINGS: KeybindingGroup[] = [ { label: "Playback", bindings: [ - { keys: ["Hold", "Space"], description: "Pause" }, + { keys: ["Space"], description: "Toggle pause" }, + { keys: ["Hold", "Space"], description: "Pause while held" }, { keys: ["Hold", "Shift"], description: "1.5× speed" }, { keys: ["Shift", "←", "→"], description: "Seek ±5s" }, ], @@ -375,11 +376,18 @@ function StreamViewInner({ path, streamParticle }: StreamViewProps) {