From 1d42d996ca5ed3f5cfbb84c4107a180d424b74c0 Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Mon, 25 Mar 2019 08:57:42 +0100 Subject: [PATCH] Fixed regression that prevented tab to navigate to the key file selection control (#896) --- MacPass/MPPathControl.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MacPass/MPPathControl.m b/MacPass/MPPathControl.m index b579ba94..7647b971 100644 --- a/MacPass/MPPathControl.m +++ b/MacPass/MPPathControl.m @@ -10,6 +10,10 @@ @implementation MPPathControl +- (BOOL)canBecomeKeyView { + return YES; +} + - (instancetype)initWithFrame:(NSRect)frameRect { self = [super initWithFrame:frameRect]; self.delegate = self;