PartDesign: remove preview update on property changed (#26803)

This recompute seemed unnecessary, and caused slowdowns when opening the file and recomputing. This decreases the time necessary to both open and recompute files that use boolean operations, and should not change anything regarding preview computation when the dialog is open.

(cherry picked from commit c1b40e3dfc)
This commit is contained in:
Louis Gombert
2026-01-10 07:17:22 +01:00
committed by Max Wilfinger
parent 76da16ed82
commit 4948158443
@@ -209,10 +209,6 @@ void Boolean::onChanged(const App::Property* prop)
touch();
}
if (strcmp(prop->getName(), "Shape") == 0) {
updatePreviewShape();
}
Feature::onChanged(prop);
}