Skip to content

Commit

Permalink
fix: don't freeze when sending a command to an frozen window
Browse files Browse the repository at this point in the history
  • Loading branch information
lwouis committed May 21, 2020
1 parent dc711d8 commit 6caab83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logic/DispatchQueues.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import Foundation

// OS events should be observed on background threads
class DispatchQueues {
static let accessibilityCommands = DispatchQueue(label: "accessibilityCommands", qos: .userInteractive)
static let accessibilityCommands = DispatchQueue(label: "accessibilityCommands", qos: .userInteractive, attributes: .concurrent)
static let keyboardEvents = DispatchQueue(label: "keyboardEvents", qos: .userInteractive)
}

0 comments on commit 6caab83

Please sign in to comment.