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

Former-commit-id: bac0250570 [formerly 6b17378b91] [formerly 80425d74a2] [formerly d9d7f21d05 [formerly 80425d74a2 [formerly f5f136b9adc1a8f2c9c3da5c15d5018549643c07]]]
Former-commit-id: d9d7f21d05
Former-commit-id: 8876d01b10462fe44aec4286e04a0afdb5ab2126 [formerly 4dbe0f423a]
Former-commit-id: 98d7e8ac59
This commit is contained in:
Lee Venable 2013-07-16 08:46:47 -05:00 committed by Gerrit Code Review
commit cf6f9eeb6b

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;
}