diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-02-06 00:55:04 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-02-06 00:55:04 +0100 |
| commit | 75a0e4509a70055851b085f3f7293ae1cf48164c (patch) | |
| tree | b2933b23235b83cb9f5f2d9fd42c8028650ad1d6 /Map/Debouncer.swift | |
| parent | 91fd86189477e6c690c6487d51d80bc58c8ecb63 (diff) | |
Fix performance and undo1.2.0
Diffstat (limited to 'Map/Debouncer.swift')
| -rw-r--r-- | Map/Debouncer.swift | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Map/Debouncer.swift b/Map/Debouncer.swift index f119d8a..cd7960a 100644 --- a/Map/Debouncer.swift +++ b/Map/Debouncer.swift @@ -3,7 +3,7 @@ import Foundation class Debouncer { // MARK: - Properties - private let queue = DispatchQueue.main + private let queue = DispatchQueue.global(qos: .utility) private var workItem = DispatchWorkItem(block: {}) private var interval: TimeInterval |