Skip to content

Commit d7a1919

Browse files
committed
Change the default value of the widget property "Time axis" to be the y-axis.
1 parent 6899505 commit d7a1919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/display/waterfallplot/src/main/java/org/phoebus/applications/waterfallplotwidget/WaterfallPlotWidget.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ protected void defineProperties(List<WidgetProperty<?>> properties)
260260
properties.add(major_tick_width = propMajorTickWidth.createProperty(this, 2.0));
261261
properties.add(minor_tick_length = propMinorTickLength.createProperty(this, 5.0));
262262
properties.add(minor_tick_width = propMinorTickWidth.createProperty(this, 1.0));
263-
properties.add(time_axis = propTimeAxis.createProperty(this, TimeAxis.XAxis));
263+
properties.add(time_axis = propTimeAxis.createProperty(this, TimeAxis.YAxis));
264264
properties.add(timespan = propTimespan.createProperty(this, "10 minutes"));
265265

266266
// WidgetPropertyListeners to enable only one PV as input when "Input is a waveform" is enabled:

0 commit comments

Comments
 (0)