bug fix: after cloning, signals still ocnnected

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorGui@195 af1100a4-978c-4157-bff7-07162d2ba061
This commit is contained in:
l_maliakal_d
2013-06-07 11:16:53 +00:00
parent 378f7715b9
commit d49a5cd7b4
7 changed files with 77 additions and 13 deletions

View File

@ -877,4 +877,30 @@ void qTabPlot::Refresh(){
}
//-------------------------------------------------------------------------------------------------------------------------------------------------
void qTabPlot::UpdateAfterCloning(){
#ifdef VERBOSE
cout << endl << "**Updating Plot After Cloning" << endl;
#endif
EnableRange();
EnableTitles();
myPlot->UpdateAfterCloning(
chkPoints->isChecked(),
chk1DLog->isChecked(),
chkInterpolate->isChecked(),
chkContour->isChecked(),
chkLogz->isChecked());
//1d
if(isOneD)
EnablePersistency(chkSuperimpose->isChecked());
//2d
else
EnableZRange();
}
//-------------------------------------------------------------------------------------------------------------------------------------------------