Parent property should not be accessible from the UI

This commit is contained in:
Jon Evans 2024-01-23 20:41:34 -05:00
parent 426aa76788
commit 256364aaa1
1 changed files with 2 additions and 1 deletions

View File

@ -328,7 +328,8 @@ static struct BOARD_ITEM_DESC
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, wxString>( _HKI( "Parent" ),
NO_SETTER( BOARD_ITEM, wxString ), &BOARD_ITEM::GetParentAsString ) )
.SetIsHiddenFromLibraryEditors();
.SetIsHiddenFromLibraryEditors()
.SetIsHiddenFromPropertiesManager();
propMgr.AddProperty( new PROPERTY<BOARD_ITEM, int>( _HKI( "Position X" ),
&BOARD_ITEM::SetX, &BOARD_ITEM::GetX, PROPERTY_DISPLAY::PT_COORD,