From fa4a805f8f044f06b6a0e75ed710ccffc94fdf09 Mon Sep 17 00:00:00 2001 From: michael starke Date: Mon, 10 Mar 2014 22:49:59 +0100 Subject: [PATCH] Disabled hotkey registration for now --- MacPass/MPAutotypeDaemon.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacPass/MPAutotypeDaemon.m b/MacPass/MPAutotypeDaemon.m index bfab8e3f..a212615e 100644 --- a/MacPass/MPAutotypeDaemon.m +++ b/MacPass/MPAutotypeDaemon.m @@ -53,7 +53,7 @@ NSString *const kMPApplciationNameKey = @"applicationName"; - (void)setEnabled:(BOOL)enabled { if(_enabled != enabled) { _enabled = enabled; - self.enabled ? [self _registerHotKey] : [self _unregisterHotKey]; + //self.enabled ? [self _registerHotKey] : [self _unregisterHotKey]; } }