Eeschema: add 4 new zoom levels (0.1, 0.15, 0.2, 0.3) in context menu.
However, to see them in context menu, the old eeschema.json config file must be deleted, because it contains the list of allowed zooms.
This commit is contained in:
parent
32c3ea4edd
commit
0f0627a53e
|
@ -442,7 +442,11 @@ void SCH_BASE_FRAME::LoadSettings( APP_SETTINGS_BASE* aCfg )
|
|||
|
||||
if( aCfg->m_Window.zoom_factors.empty() )
|
||||
{
|
||||
aCfg->m_Window.zoom_factors = { 0.5,
|
||||
aCfg->m_Window.zoom_factors = { 0.1,
|
||||
0.15,
|
||||
0.2,
|
||||
0.3,
|
||||
0.5,
|
||||
0.7,
|
||||
1.0,
|
||||
1.5,
|
||||
|
|
Loading…
Reference in New Issue