Issue #2734 - default time range to 24 hours.

Change-Id: If50ab9d45e3c8a1074f258583e07d248582c1f1d

Former-commit-id: 30d52d79ba79c79b8cdfbfdd8d61b1b7b04afef5
This commit is contained in:
Mike Duff 2014-02-19 10:23:48 -06:00
parent 6e60748b41
commit 19033601bf

View file

@ -76,6 +76,7 @@ import com.raytheon.viz.ui.widgets.duallist.IUpdate;
* Feb 26, 2013 1667 mpduff Sort categories.
* Sep 27, 2013 #2419 lvenable Changed code so the dual list will
* function correctly on start up.
* Feb 19, 2014 2734 mpduff Default time range to 24 hours.
*
* </pre>
*
@ -262,7 +263,7 @@ public class StatsControlDlg extends CaveSWTDialog implements IStatsControl,
timeRangeCombo.setLayoutData(gd);
timeRangeCombo.setToolTipText("Choose a Time Range");
timeRangeCombo.setItems(this.TIME_RANGE_ITEMS);
timeRangeCombo.select(0);
timeRangeCombo.select(4); // default to 24 hrs
gd = new GridData(SWT.CENTER, SWT.DEFAULT, true, false);
gl = new GridLayout(2, false);