Skip to content

Commit

Permalink
#443 correlogram disable auto-calc when init correlogram
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lixun910 committed Jun 9, 2016
1 parent 8a58b3d commit 9ee0bfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Explore/CorrelParamsDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand All @@ -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();
}

Expand Down

0 comments on commit 9ee0bfa

Please sign in to comment.