Inspection: Update UI strings for consistency

This commit is contained in:
Max Wilfinger
2025-06-29 15:53:04 +02:00
committed by Chris Hennes
parent df08c0ce8d
commit 488bc484b9
5 changed files with 10 additions and 10 deletions

View File

@@ -869,7 +869,7 @@ App::DocumentObjectExecReturn* Feature::execute()
DistanceInspection insp(this->SearchRadius.getValue(), actual, inspectNominal);
unsigned long count = actual->countPoints();
std::stringstream str;
str << "Inspecting " << this->Label.getValue() << "...";
str << "Inspecting " << this->Label.getValue() << "";
Base::SequencerLauncher seq(str.str().c_str(), count);
std::vector<float> vals(count);
@@ -958,7 +958,7 @@ App::DocumentObjectExecReturn* Feature::execute()
else {
// Single-threaded operation
std::stringstream str;
str << "Inspecting " << this->Label.getValue() << "...";
str << "Inspecting " << this->Label.getValue() << "";
Base::SequencerLauncher seq(str.str().c_str(), count);
for (unsigned int i = 0; i < count; i++) {