From 3f39840f83dfab98fac09187aecd373a2ec0a994 Mon Sep 17 00:00:00 2001 From: Louis Gombert <44813937+Lgt2x@users.noreply.github.com> Date: Sat, 10 Jan 2026 00:05:23 +0100 Subject: [PATCH] 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. --- src/Mod/PartDesign/App/FeatureBoolean.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Mod/PartDesign/App/FeatureBoolean.cpp b/src/Mod/PartDesign/App/FeatureBoolean.cpp index 5d527af909..e3f9fd575f 100644 --- a/src/Mod/PartDesign/App/FeatureBoolean.cpp +++ b/src/Mod/PartDesign/App/FeatureBoolean.cpp @@ -209,10 +209,6 @@ void Boolean::onChanged(const App::Property* prop) touch(); } - if (strcmp(prop->getName(), "Shape") == 0) { - updatePreviewShape(); - } - Feature::onChanged(prop); }