mirror of
https://github.com/yattee/yattee.git
synced 2024-11-09 15:58:20 +00:00
macOS only apply player shortcuts when window is active
This commit is contained in:
parent
9bf3df1a29
commit
d525a22215
@ -1286,7 +1286,10 @@ final class PlayerModel: ObservableObject {
|
||||
|
||||
#if os(macOS)
|
||||
private func assignKeyPressMonitor() {
|
||||
keyPressMonitor = NSEvent.addLocalMonitorForEvents(matching: .keyDown) { keyEvent -> NSEvent? in
|
||||
keyPressMonitor = NSEvent.addLocalMonitorForEvents(matching: .keyDown) { [weak self] keyEvent -> NSEvent? in
|
||||
// Check if the player window is the key window
|
||||
guard let self, let window = Windows.playerWindow, window.isKeyWindow else { return keyEvent }
|
||||
|
||||
switch keyEvent.keyCode {
|
||||
case 124:
|
||||
if !self.liveStreamInAVPlayer {
|
||||
|
Loading…
Reference in New Issue
Block a user