Skip to content

Commit

Permalink
squash
Browse files Browse the repository at this point in the history
  • Loading branch information
PaddleStroke authored Mar 8, 2025
1 parent fcfbbc7 commit d90a2a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Measure/Gui/QuickMeasure.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ bool QuickMeasure::shouldMeasure(const Gui::SelectionChanges& msg) const

bool QuickMeasure::isObjAcceptable(App::DocumentObject* obj)
{
// only measure shapes
// only measure shapes. Exclude datums that derive from Part::Feature
if (obj && obj->isDerivedFrom<Part::Feature>() && !obj->isDerivedFrom<Part::Datum>()) {
return true;
}
Expand Down

0 comments on commit d90a2a5

Please sign in to comment.