always show modified expert properties (IDEADEV-9084)

This commit is contained in:
Dmitry Jemerov
2006-09-12 19:59:42 +04:00
parent c2f6e026d2
commit df50afb38b

View File

@@ -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);