From c2dd64ff702093117ddc18b3d2eaac1e1f524745 Mon Sep 17 00:00:00 2001 From: michael starke Date: Thu, 16 Nov 2017 19:14:50 +0100 Subject: [PATCH] do not enabled non-working remove plugin button --- MacPass/MPPluginSettingsController.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MacPass/MPPluginSettingsController.m b/MacPass/MPPluginSettingsController.m index 6f536863..af343c99 100644 --- a/MacPass/MPPluginSettingsController.m +++ b/MacPass/MPPluginSettingsController.m @@ -111,7 +111,7 @@ typedef NS_ENUM(NSUInteger, MPPluginSegmentType) { - (void)tableViewSelectionDidChange:(NSNotification *)notification { NSTableView *table = notification.object; MPPlugin *plugin = [self pluginForRow:table.selectedRow]; - [self.addRemovePluginsControl setEnabled:(nil != plugin) forSegment:MPRemovePluginSegment]; + //[self.addRemovePluginsControl setEnabled:(nil != plugin) forSegment:MPRemovePluginSegment]; [self showSettingsForPlugin:plugin]; }