Remove updateUi() from slot functions

This commit is contained in:
wmayer 2013-07-12 12:55:37 +02:00
parent 227b1f6eb2
commit f511d5cc96
3 changed files with 0 additions and 7 deletions

View File

@ -245,7 +245,6 @@ void TaskMirroredParameters::onPlaneChanged(int num) {
else if (num == maxcount)
exitSelectionMode();
updateUI();
recomputeFeature();
}

View File

@ -213,7 +213,6 @@ void TaskPolarPatternParameters::onCheckReverse(const bool on) {
pcPolarPattern->Reversed.setValue(on);
exitSelectionMode();
updateUI();
recomputeFeature();
}
@ -224,7 +223,6 @@ void TaskPolarPatternParameters::onAngle(const double a) {
pcPolarPattern->Angle.setValue(a);
exitSelectionMode();
updateUI();
recomputeFeature();
}
@ -235,7 +233,6 @@ void TaskPolarPatternParameters::onOccurrences(const int n) {
pcPolarPattern->Occurrences.setValue(n);
exitSelectionMode();
updateUI();
recomputeFeature();
}
@ -259,7 +256,6 @@ void TaskPolarPatternParameters::onAxisChanged(int num) {
else if (num == 1)
exitSelectionMode();
updateUI();
recomputeFeature();
}

View File

@ -147,7 +147,6 @@ void TaskScaledParameters::onFactor(const double f) {
return;
PartDesign::Scaled* pcScaled = static_cast<PartDesign::Scaled*>(getObject());
pcScaled->Factor.setValue(f);
updateUI();
recomputeFeature();
}
@ -156,7 +155,6 @@ void TaskScaledParameters::onOccurrences(const int n) {
return;
PartDesign::Scaled* pcScaled = static_cast<PartDesign::Scaled*>(getObject());
pcScaled->Occurrences.setValue(n);
updateUI();
recomputeFeature();
}