Loading
fix(macos): reliable space-bar play/pause via a local key monitor
SwiftUI does not reliably fire a bare-space menu key equivalent (the focused scroll view consumes the key first), so the space shortcut is now handled by an NSEvent local monitor in the app delegate, like other media apps: it toggles play/pause whenever an episode is loaded, passes the key through while a text field is being edited (the field editor is an NSTextView), and consumes the event so nothing double-fires. The menu item keeps its ␣ label as the visual hint. Co-Authored-By: Claude (RCA)