IJPL-180572 Fixed round trip after session application

GitOrigin-RevId: 3b0f5f8a699049ce7193f1ed72846a4e4d6c3795
This commit is contained in:
Denis Zaichenko
2025-07-01 16:14:08 +00:00
committed by intellij-monorepo-bot
parent 8f7f714a50
commit 18ff9e2d59
@@ -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();