diff --git a/src/Mod/Measure/Gui/QuickMeasure.cpp b/src/Mod/Measure/Gui/QuickMeasure.cpp index 76cc9729d1..ac18cb2420 100644 --- a/src/Mod/Measure/Gui/QuickMeasure.cpp +++ b/src/Mod/Measure/Gui/QuickMeasure.cpp @@ -66,6 +66,10 @@ void QuickMeasure::onSelectionChanged(const Gui::SelectionChanges& msg) // ignore this exception because it can be caused by trying to access a non-existing // sub-element e.g. when selecting a construction geometry in sketcher } + catch (const Base::ValueError&) { + // ignore this exception because it can be caused by trying to access a non-existing + // sub-element e.g. when selecting a constraint in sketcher + } catch (const Base::Exception& e) { e.ReportException(); }