diff --git a/platform/platform-impl/src/com/intellij/ide/plugins/newui/MyPluginModel.java b/platform/platform-impl/src/com/intellij/ide/plugins/newui/MyPluginModel.java index 2eb60e64c6bb..6c318ef12e25 100644 --- a/platform/platform-impl/src/com/intellij/ide/plugins/newui/MyPluginModel.java +++ b/platform/platform-impl/src/com/intellij/ide/plugins/newui/MyPluginModel.java @@ -130,7 +130,7 @@ public class MyPluginModel extends InstalledPluginsTableModel implements PluginE if (error != null) { throw new ConfigurationException(XmlStringUtil.wrapInHtml(error)).withHtmlMessage(); } - applyResult.getPluginsToEnable().forEach(id -> setEnabled(id, PluginEnabledState.ENABLED)); + applyResult.getPluginsToEnable().forEach(id -> super.setEnabled(id, PluginEnabledState.ENABLED)); myUninstalled.clear(); updateButtons(); return !applyResult.getNeedRestart();