From eb594a2ffb0e24e573feb1ed800661925bea159c Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Sat, 16 Nov 2024 12:36:46 +0000 Subject: [PATCH] [Part] Comment added as requested --- src/Mod/Part/Gui/DlgSettings3DViewPartImp.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Mod/Part/Gui/DlgSettings3DViewPartImp.cpp b/src/Mod/Part/Gui/DlgSettings3DViewPartImp.cpp index 377ce4103b20..554051d96889 100644 --- a/src/Mod/Part/Gui/DlgSettings3DViewPartImp.cpp +++ b/src/Mod/Part/Gui/DlgSettings3DViewPartImp.cpp @@ -91,6 +91,11 @@ void DlgSettings3DViewPart::onMaxAngularDeflectionValueChanged(double vMaxAngle) if (!this->isVisible()) { return; } + /** + * The lower threshold of 2.0 was determined by testing + * as laid out in the table as per comment hyperlink: + * https://github.com/FreeCAD/FreeCAD/issues/15951#issuecomment-2304308163 + */ const double vMaxAngleMinThreshold = 2.0; if (vMaxAngle < vMaxAngleMinThreshold && !checkValue) { checkValue = true;