Issue #2166 - Fix to not open graph from CAVE menus

Change-Id: If77854e7ea4e0c703649e2e1bc322b3833d21996

Former-commit-id: 764e4966d1 [formerly f6d940c02245d59782d318fb482886a0df3216a9]
Former-commit-id: 03a9dcc4e3
This commit is contained in:
Mike Duff 2013-07-16 08:29:15 -05:00
parent 94fa6f0e30
commit 013f05d57e

View file

@ -40,7 +40,7 @@ import com.raytheon.viz.hydrocommon.HydroDisplayManager;
* ------------ ---------- ----------- --------------------------
* 6/27/06 lvenable Initial Creation.
* 02/05/2013 1578 rferrel Changes for non-blocking singleton TimeSeriesDlg.
* 07/10/2013 2166 mpduff Select the site.
* 07/10/2013 2166 mpduff Select the site but don't display the graph.
*
* </pre>
*
@ -53,7 +53,7 @@ public class TimeSeriesAction extends AbstractHandler {
public Object execute(ExecutionEvent arg0) throws ExecutionException {
TimeSeriesDlg dlg = TimeSeriesDlg.getInstance();
dlg.updateAndOpen(HydroDisplayManager.getInstance().getCurrentLid(),
true);
false);
return null;
}