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.
1 parent 5287c93 commit bf7cc7dCopy full SHA for bf7cc7d
app/display/model/src/main/java/org/csstudio/display/builder/model/widgets/VisibleWidget.java
@@ -57,7 +57,9 @@ protected void defineProperties(final List<WidgetProperty<?>> properties)
57
{
58
super.defineProperties(properties);
59
properties.add(visible = propVisible.createProperty(this, true));
60
+ visible.setInformativeTooltip("Should the widget be visible?");
61
properties.add(tooltip = propTooltip.createProperty(this, getInitialTooltip()));
62
+ tooltip.setInformativeTooltip("Text to display in the tooltip of the widget when hovering with the mouse over the widget.");
63
// Start 'connected', assuming there are no PVs
64
properties.add(connected = runtimePropConnected.createProperty(this, true));
65
}
0 commit comments