Layer column should be shown by default, not italic.
Fixes https://gitlab.com/kicad/code/kicad/-/issues/17758
(cherry picked from commit 9dab855f8d
)
This commit is contained in:
parent
67b5e86cc4
commit
9f39420808
|
@ -101,7 +101,7 @@ FOOTPRINT_EDITOR_SETTINGS::FOOTPRINT_EDITOR_SETTINGS() :
|
|||
&m_ViewersDisplay.m_DisplayPadNumbers, true ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<wxString>( "window.footprint_text_shown_columns",
|
||||
&m_FootprintTextShownColumns, "0 1 2 3 4 5 6" ) );
|
||||
&m_FootprintTextShownColumns, "0 1 2 3 4 5 7" ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<int>( "editing.magnetic_pads",
|
||||
reinterpret_cast<int*>( &m_MagneticItems.pads ),
|
||||
|
|
|
@ -540,7 +540,7 @@ PCBNEW_SETTINGS::PCBNEW_SETTINGS()
|
|||
&m_Plot.as_item_checkboxes, false ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<wxString>( "window.footprint_text_shown_columns",
|
||||
&m_FootprintTextShownColumns, "0 1 2 3 4 5 6" ) );
|
||||
&m_FootprintTextShownColumns, "0 1 2 3 4 5 7" ) );
|
||||
|
||||
m_params.emplace_back( new PARAM<int>( "footprint_wizard_list.width",
|
||||
&m_FootprintWizardList.width, -1 ) );
|
||||
|
|
Loading…
Reference in New Issue