File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
app/display/model/src/main/java/org/csstudio/display/builder/model/widgets Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 4848import org .csstudio .display .builder .model .properties .WidgetColor ;
4949import org .csstudio .display .builder .model .properties .WidgetFont ;
5050import org .epics .util .array .ListDouble ;
51+ import org .epics .util .array .ListFloat ;
5152import org .epics .util .array .ListNumber ;
5253import org .epics .vtype .VStringArray ;
5354import org .epics .vtype .VTable ;
@@ -597,6 +598,8 @@ else if (the_value instanceof VTable)
597598 row .add ( Objects .toString (((List )col_data ).get (r )) );
598599 else if (col_data instanceof ListDouble )
599600 row .add ( Double .toString (((ListDouble )col_data ).getDouble (r )) );
601+ else if (col_data instanceof ListFloat )
602+ row .add ( Float .toString (((ListFloat )col_data ).getFloat (r )) );
600603 else if (col_data instanceof ListNumber )
601604 row .add ( Long .toString (((ListNumber )col_data ).getLong (r )) );
602605 else
You can’t perform that action at this time.
0 commit comments