diff --git a/Delta/AppDelegate.swift b/Delta/AppDelegate.swift index 6a56585..176e28a 100644 --- a/Delta/AppDelegate.swift +++ b/Delta/AppDelegate.swift @@ -26,6 +26,12 @@ class AppDelegate: UIResponder, UIApplicationDelegate self.window?.tintColor = UIColor.deltaPurple + // Disable system gestures that delay touches on left edge of screen + for gestureRecognizer in self.window?.gestureRecognizers ?? [] where NSStringFromClass(type(of: gestureRecognizer)).contains("GateGesture") + { + gestureRecognizer.delaysTouchesBegan = false + } + // Database DatabaseManager.shared.loadPersistentStores { (description, error) in