do not enabled non-working remove plugin button

This commit is contained in:
michael starke
2017-11-16 19:14:50 +01:00
parent 3113c38a20
commit c2dd64ff70

View File

@@ -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];
}