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:
parent
f48a105357
commit
9e82d7c93c
|
@ -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;
|
||||
|
|
|
@ -514,7 +514,7 @@ public:
|
|||
*
|
||||
* Setting name: "FontErrorSize"
|
||||
* Valid values: 0.01 to 100
|
||||
* Default value: 8
|
||||
* Default value: 2
|
||||
*/
|
||||
double m_FontErrorSize;
|
||||
|
||||
|
|
Loading…
Reference in New Issue