diff --git a/src/Mod/TechDraw/App/Preferences.cpp b/src/Mod/TechDraw/App/Preferences.cpp index 4439062046..171ec7de95 100644 --- a/src/Mod/TechDraw/App/Preferences.cpp +++ b/src/Mod/TechDraw/App/Preferences.cpp @@ -283,16 +283,17 @@ std::string Preferences::bitmapFill() return prefBitmapFile; } +//! Returns the factor for calculating the ISO extension line gap, not the actual distance. double Preferences::GapISO() { - double factor = getPreferenceGroup("Dimensions")->GetFloat("GapISO", 8.0); + double factor = getPreferenceGroup("Dimensions")->GetFloat("GapISO", 0.0); return factor; } -//! Returns the factor for calculating the ISO gap, not the actual distance. +//! Returns the factor for calculating the ASME extension line gap, not the actual distance. double Preferences::GapASME() { - double factor = getPreferenceGroup("Dimensions")->GetFloat("GapASME", 6.0); + double factor = getPreferenceGroup("Dimensions")->GetFloat("GapASME", 0.0); return factor; } diff --git a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui index 56b8412cb3..958eb04f9b 100644 --- a/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui +++ b/src/Mod/TechDraw/Gui/DlgPrefsTechDrawDimensions.ui @@ -524,13 +524,13 @@ Multiplier of 'Font Size' - <html><head/><body><p>Controls the size of gap between dimension point and start of extension line for ISO dimensions. Value * linewidth is the gap.</p></body></html> + <html><head/><body><p>Controls the size of gap between dimension point and start of extension line for ISO dimensions. Value * linewidth is the gap. Normally, no gap is used. If using a gap, the recommended value 8.</p></body></html> Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - 8.000000000000000 + 0.000000000000000 GapISO @@ -543,13 +543,13 @@ Multiplier of 'Font Size' - <html><head/><body><p>Controls the size of gap between dimension point and start of extension line for ASME dimensions. Value * linewidth is the gap.</p></body></html> + <html><head/><body><p>Controls the size of gap between dimension point and start of extension line for ASME dimensions. Value * linewidth is the gap. Normally, no gap is used. If a gap is used, the recommended value is 6.</p></body></html> Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - 6.000000000000000 + 0.000000000000000 GapASME