Merge "Issue #2166 - Fix to not open graph from CAVE menus" into development

Former-commit-id: f5f136b9adc1a8f2c9c3da5c15d5018549643c07
This commit is contained in:
Lee Venable 2013-07-16 08:46:47 -05:00 committed by Gerrit Code Review
commit d9d7f21d05

View file

@ -40,7 +40,7 @@ import com.raytheon.viz.hydrocommon.HydroDisplayManager;
* ------------ ---------- ----------- -------------------------- * ------------ ---------- ----------- --------------------------
* 6/27/06 lvenable Initial Creation. * 6/27/06 lvenable Initial Creation.
* 02/05/2013 1578 rferrel Changes for non-blocking singleton TimeSeriesDlg. * 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> * </pre>
* *
@ -53,7 +53,7 @@ public class TimeSeriesAction extends AbstractHandler {
public Object execute(ExecutionEvent arg0) throws ExecutionException { public Object execute(ExecutionEvent arg0) throws ExecutionException {
TimeSeriesDlg dlg = TimeSeriesDlg.getInstance(); TimeSeriesDlg dlg = TimeSeriesDlg.getInstance();
dlg.updateAndOpen(HydroDisplayManager.getInstance().getCurrentLid(), dlg.updateAndOpen(HydroDisplayManager.getInstance().getCurrentLid(),
true); false);
return null; return null;
} }