very minor fix: change the default value user grid size to 10mils
Previously, was 12.5 mils, acceptable for pcbnew but not for eeschema. Now set to 10 mils.
This commit is contained in:
parent
b48a6274e6
commit
534bcc8db0
|
@ -262,10 +262,11 @@ void APP_SETTINGS_BASE::addParamsForWindow( WINDOW_SETTINGS* aWindow, const std:
|
||||||
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.fast_grid_2",
|
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.fast_grid_2",
|
||||||
&aWindow->grid.fast_grid_2, 1 ) );
|
&aWindow->grid.fast_grid_2, 1 ) );
|
||||||
|
|
||||||
|
// for grid user, use a default value compatible with eeschema and pcbnew (10 mils)
|
||||||
m_params.emplace_back( new PARAM<wxString>( aJsonPath + ".grid.user_grid_x",
|
m_params.emplace_back( new PARAM<wxString>( aJsonPath + ".grid.user_grid_x",
|
||||||
&aWindow->grid.user_grid_x, "12.5 mil" ) );
|
&aWindow->grid.user_grid_x, "10 mil" ) );
|
||||||
m_params.emplace_back( new PARAM<wxString>( aJsonPath + ".grid.user_grid_y",
|
m_params.emplace_back( new PARAM<wxString>( aJsonPath + ".grid.user_grid_y",
|
||||||
&aWindow->grid.user_grid_y, "12.5 mil" ) );
|
&aWindow->grid.user_grid_y, "10 mil" ) );
|
||||||
|
|
||||||
m_params.emplace_back( new PARAM<double>( aJsonPath + ".grid.line_width",
|
m_params.emplace_back( new PARAM<double>( aJsonPath + ".grid.line_width",
|
||||||
&aWindow->grid.line_width, 1.0 ) );
|
&aWindow->grid.line_width, 1.0 ) );
|
||||||
|
|
Loading…
Reference in New Issue