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:
jean-pierre charras 2020-06-27 16:44:26 +02:00
parent 32c3ea4edd
commit 0f0627a53e
1 changed files with 5 additions and 1 deletions

View File

@ -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,