Decrease font error allowance

This is activated when changing bezier into segments and sets the
minimum allowance in 1/16 of the font's internal units.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18300
This commit is contained in:
Seth Hillbrand 2024-06-28 12:09:49 -07:00
parent f48a105357
commit 9e82d7c93c
2 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ ADVANCED_CFG::ADVANCED_CFG()
m_PcbSelectionVisibilityRatio = 1.0;
m_FontErrorSize = 16;
m_FontErrorSize = 2;
m_OcePluginLinearDeflection = 0.14;
m_OcePluginAngularDeflection = 30;

View File

@ -514,7 +514,7 @@ public:
*
* Setting name: "FontErrorSize"
* Valid values: 0.01 to 100
* Default value: 8
* Default value: 2
*/
double m_FontErrorSize;