From 3b295785241c0a0a5ce56d39852d4162c2530965 Mon Sep 17 00:00:00 2001 From: Roopesh Chander Date: Thu, 31 Jan 2019 17:04:34 +0530 Subject: Configure timers to fire even when tracking mouse events Signed-off-by: Roopesh Chander --- WireGuard/WireGuard/Tunnel/TunnelsManager.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'WireGuard/WireGuard/Tunnel/TunnelsManager.swift') diff --git a/WireGuard/WireGuard/Tunnel/TunnelsManager.swift b/WireGuard/WireGuard/Tunnel/TunnelsManager.swift index 3120f7d..70b69f9 100644 --- a/WireGuard/WireGuard/Tunnel/TunnelsManager.swift +++ b/WireGuard/WireGuard/Tunnel/TunnelsManager.swift @@ -388,7 +388,7 @@ class TunnelContainer: NSObject { self.refreshStatus() } self.activationTimer = activationTimer - RunLoop.main.add(activationTimer, forMode: .default) + RunLoop.main.add(activationTimer, forMode: .common) } } } @@ -444,7 +444,7 @@ class TunnelContainer: NSObject { self.isActivateOnDemandEnabled = self.tunnelProvider.isOnDemandEnabled } self.deactivationTimer = deactivationTimer - RunLoop.main.add(deactivationTimer, forMode: .default) + RunLoop.main.add(deactivationTimer, forMode: .common) return } #endif -- cgit v1.2.3-59-g8ed1b