From 9002ade55439874da7950e2ccf7413df45588e43 Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Tue, 29 Aug 2023 12:23:33 -0400 Subject: [PATCH] Schematic: default editors to mils --- common/settings/app_settings.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/common/settings/app_settings.cpp b/common/settings/app_settings.cpp index dc2de4a9a0..7c6003e8ae 100644 --- a/common/settings/app_settings.cpp +++ b/common/settings/app_settings.cpp @@ -138,14 +138,23 @@ APP_SETTINGS_BASE::APP_SETTINGS_BASE( const std::string& aFilename, int aSchemaV m_params.emplace_back( new PARAM_LIST( "system.file_history", &m_System.file_history, {} ) ); - m_params.emplace_back( new PARAM( "system.units", - &m_System.units, static_cast( EDA_UNITS::MILLIMETRES ) ) ); + if( m_filename == wxS( "pl_editor" ) + || ( m_filename == wxS( "eeschema" ) || m_filename == wxS( "symbol_editor" ) ) ) + { + m_params.emplace_back( new PARAM( "system.units", + &m_System.units, static_cast( EDA_UNITS::MILS ) ) ); + } + else + { + m_params.emplace_back( new PARAM( "system.units", + &m_System.units, static_cast( EDA_UNITS::MILLIMETRES ) ) ); + } m_params.emplace_back( new PARAM( "system.last_metric_units", &m_System.last_metric_units, static_cast( EDA_UNITS::MILLIMETRES ) ) ); m_params.emplace_back( new PARAM( "system.last_imperial_units", - &m_System.last_imperial_units, static_cast( EDA_UNITS::INCHES ) ) ); + &m_System.last_imperial_units, static_cast( EDA_UNITS::MILS ) ) ); m_params.emplace_back( new PARAM( "appearance.color_theme", &m_ColorTheme, COLOR_SETTINGS::COLOR_BUILTIN_DEFAULT ) );