Make sure eeschema default grid is 50mils.
Fixes https://gitlab.com/kicad/code/kicad/issues/4835
This commit is contained in:
parent
6366aa3ede
commit
7d07e6719f
|
@ -262,14 +262,16 @@ void APP_SETTINGS_BASE::addParamsForWindow( WINDOW_SETTINGS* aWindow, const std:
|
||||||
m_params.emplace_back( new PARAM_LIST<wxString>( aJsonPath + ".grid.sizes",
|
m_params.emplace_back( new PARAM_LIST<wxString>( aJsonPath + ".grid.sizes",
|
||||||
&aWindow->grid.sizes, {} ) );
|
&aWindow->grid.sizes, {} ) );
|
||||||
|
|
||||||
|
// pcbnew default grid doesn't matter much, but eeschema does, so default to the index
|
||||||
|
// of the 50mil grid in eeschema
|
||||||
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.last_size",
|
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.last_size",
|
||||||
&aWindow->grid.last_size_idx, 0 ) );
|
&aWindow->grid.last_size_idx, 1 ) );
|
||||||
|
|
||||||
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.fast_grid_1",
|
m_params.emplace_back( new PARAM<int>( aJsonPath + ".grid.fast_grid_1",
|
||||||
&aWindow->grid.fast_grid_1, 0 ) );
|
&aWindow->grid.fast_grid_1, 1 ) );
|
||||||
|
|
||||||
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, 2 ) );
|
||||||
|
|
||||||
// for grid user, use a default value compatible with eeschema and pcbnew (10 mils)
|
// 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",
|
||||||
|
|
Loading…
Reference in New Issue