We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8ba0923 + 5f5b29d commit e204d50Copy full SHA for e204d50
app/display/model/src/main/java/org/csstudio/display/builder/model/widgets/PVWidget.java
@@ -82,6 +82,7 @@ protected void defineProperties (final List<WidgetProperty<?>> properties )
82
{
83
super.defineProperties(properties);
84
properties.add(pv_name = propPVName.createProperty(this, ""));
85
+ pv_name.addPropertyListener((property, oldValue, newValue) -> pv_value.setValue(null));
86
properties.add(pv_value = runtimePropPVValue.createProperty(this, null));
87
properties.add(alarm_border = propBorderAlarmSensitive.createProperty(this, true));
88
}
0 commit comments