From 75a0e4509a70055851b085f3f7293ae1cf48164c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sat, 6 Feb 2021 00:55:04 +0100 Subject: Fix performance and undo --- Map/Debouncer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Map/Debouncer.swift') 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 -- cgit