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 3f623d0 commit c3ab02aCopy full SHA for c3ab02a
app/pvtable/src/main/java/org/phoebus/applications/pvtable/model/PVTableItem.java
@@ -203,6 +203,9 @@ private void updateDescription() {
203
VType currentValue = getValue();
204
if(currentValue != null) {
205
PV thePV = pv.get();
206
+ // DisplayProvider is an optional interface for VType values,
207
+ // not PVs, but the custum datasource as Muscade happens to implement
208
+ // DisplayProvider for enum and bool PVs, so check for that here
209
Display display = thePV instanceof DisplayProvider ? ((DisplayProvider) thePV).getDisplay() : null;
210
display = display == null && currentValue instanceof DisplayProvider ? ((DisplayProvider) currentValue).getDisplay(): display;
211
if (display != null) {
0 commit comments