From df50afb38bcd318f5869af3dedc22e4bffe028fd Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 12 Sep 2006 19:59:42 +0400 Subject: [PATCH] always show modified expert properties (IDEADEV-9084) --- .../uiDesigner/propertyInspector/PropertyInspectorTable.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-designer/impl/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java b/ui-designer/impl/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java index d69f8b41d65d..d9212e1296fe 100644 --- a/ui-designer/impl/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java +++ b/ui-designer/impl/com/intellij/uiDesigner/propertyInspector/PropertyInspectorTable.java @@ -480,7 +480,8 @@ public final class PropertyInspectorTable extends Table implements DataProvider{ final Properties properties = Properties.getInstance(); for (final IntrospectedProperty property: introspectedProperties) { if (!property.appliesTo(component)) continue; - if (!myShowExpertProperties && properties.isExpertProperty(component.getModule(), componentClass, property.getName())) { + if (!myShowExpertProperties && properties.isExpertProperty(component.getModule(), componentClass, property.getName()) && + !isModifiedForSelection(property)) { continue; } addProperty(result, property);