[threading] IJPL-235235: Add missing read access

GitOrigin-RevId: ad00d287289517e29123ecf667dfce1df07f1456
This commit is contained in:
Konstantin Nisht
2026-02-16 18:17:50 +01:00
committed by intellij-monorepo-bot
parent b6d0d4ef09
commit ba252ff50a

View File

@@ -76,7 +76,9 @@ public final class PropertyInspector extends JPanel{
new ActionListener() {
@Override
public void actionPerformed(final ActionEvent e) {
myInspectorTable.setShowExpertProperties(chkShowExpertProperties.isSelected());
WriteIntentReadAction.run(() -> {
myInspectorTable.setShowExpertProperties(chkShowExpertProperties.isSelected());
});
}
}
);