From 9ee0bfa2ac0315e35fe7338e39979c5ad7c4f8a4 Mon Sep 17 00:00:00 2001 From: Xun Li Date: Thu, 9 Jun 2016 12:07:58 -0700 Subject: [PATCH] #443 correlogram disable auto-calc when init correlogram This is a simple fix by disabling the auto-calc when init correlogram. There is no scheme to remember what variable has been selected in other graphs. But will put this feature in next release. --- Explore/CorrelParamsDlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Explore/CorrelParamsDlg.cpp b/Explore/CorrelParamsDlg.cpp index 3107c8fce..8799c5b05 100644 --- a/Explore/CorrelParamsDlg.cpp +++ b/Explore/CorrelParamsDlg.cpp @@ -360,7 +360,7 @@ void CorrelParamsFrame::OnAllPairsRadioSelected(wxCommandEvent& ev) max_iter_txt->Enable(false); max_iter_tctrl->Enable(false); - OnApplyBtn(ev); + //OnApplyBtn(ev); ev.Skip(); } @@ -375,7 +375,7 @@ void CorrelParamsFrame::OnRandSampRadioSelected(wxCommandEvent& ev) max_iter_txt->Enable(true); max_iter_tctrl->Enable(true); - OnApplyBtn(ev); + //OnApplyBtn(ev); ev.Skip(); }