Remove updateUi() from slot functions
This commit is contained in:
parent
227b1f6eb2
commit
f511d5cc96
|
@ -245,7 +245,6 @@ void TaskMirroredParameters::onPlaneChanged(int num) {
|
|||
else if (num == maxcount)
|
||||
exitSelectionMode();
|
||||
|
||||
updateUI();
|
||||
recomputeFeature();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user