From eabf1e52b2faf1502435c212b7da6206ac76d011 Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Wed, 20 Mar 2019 10:59:16 +0100 Subject: [PATCH] Fixed issue with perform Autotype button not being enabled when the candidate selection window shows up. (fixes #891) --- MacPass/MPAutotypeCandidateSelectionViewController.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MacPass/MPAutotypeCandidateSelectionViewController.m b/MacPass/MPAutotypeCandidateSelectionViewController.m index e7f74d2a..c3284919 100644 --- a/MacPass/MPAutotypeCandidateSelectionViewController.m +++ b/MacPass/MPAutotypeCandidateSelectionViewController.m @@ -42,6 +42,8 @@ - (void)viewDidLoad { [super viewDidLoad]; self.selectAutotypeContextButton.enabled = NO; + NSNotification *notification = [NSNotification notificationWithName:NSTableViewSelectionDidChangeNotification object:self.contextTableView]; + [self tableViewSelectionDidChange:notification]; } #pragma mark NSTableViewDataSource