From 18ff9e2d59ebfea17efe66b8c4f2d569f60de60f Mon Sep 17 00:00:00 2001 From: Denis Zaichenko Date: Tue, 1 Jul 2025 14:49:44 +0200 Subject: [PATCH] IJPL-180572 Fixed round trip after session application GitOrigin-RevId: 3b0f5f8a699049ce7193f1ed72846a4e4d6c3795 --- .../src/com/intellij/ide/plugins/newui/MyPluginModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();