mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
always show modified expert properties (IDEADEV-9084)
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user