PCB Editor: Locked filter unchecked by default

And some minor code style improvement in one place

Fixes: https://gitlab.com/kicad/code/kicad/-/issues/13246
This commit is contained in:
aris-kimi 2023-01-22 18:13:48 +02:00 committed by Jeff Young
parent d3e513a366
commit 09b83b95d0
3 changed files with 16 additions and 16 deletions

View File

@ -131,7 +131,7 @@ PROJECT_LOCAL_SETTINGS::PROJECT_LOCAL_SETTINGS( PROJECT* aProject, const wxStrin
SetIfPresent( aVal, "otherItems", m_SelectionFilter.otherItems );
},
{
{ "lockedItems", true },
{ "lockedItems", false },
{ "footprints", true },
{ "text", true },
{ "tracks", true },

View File

@ -279,7 +279,7 @@ FOOTPRINT_EDITOR_SETTINGS::FOOTPRINT_EDITOR_SETTINGS() :
SetIfPresent( aVal, "otherItems", m_SelectionFilter.otherItems );
},
{
{ "lockedItems", true },
{ "lockedItems", false },
{ "footprints", true },
{ "text", true },
{ "tracks", true },