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:
parent
d3e513a366
commit
09b83b95d0
|
@ -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 },
|
||||
|
|
|
@ -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 },
|
||||
|
|
Loading…
Reference in New Issue