Properties: Fix zones stomping on position props for other items

This commit is contained in:
Jon Evans 2022-12-01 16:54:36 -05:00
parent a5096bf28a
commit 3b25fdc212
1 changed files with 9 additions and 6 deletions

View File

@ -1371,14 +1371,17 @@ static struct ZONE_DESC
propMgr.InheritsAfter( TYPE_HASH( ZONE ), TYPE_HASH( BOARD_CONNECTED_ITEM ) );
// Mask layer and position properties; they aren't useful in current form
auto posX = new PROPERTY<BOARD_ITEM, int>( _HKI( "Position X" ), &ZONE::SetX, &ZONE::GetX,
PROPERTY_DISPLAY::PT_COORD,
ORIGIN_TRANSFORMS::ABS_X_COORD );
auto posX = new PROPERTY<ZONE, int>( _HKI( "Position X" ),
NO_SETTER( ZONE, int ),
reinterpret_cast<int (ZONE::*)() const>( &ZONE::GetX ),
PROPERTY_DISPLAY::PT_COORD,
ORIGIN_TRANSFORMS::ABS_X_COORD );
posX->SetIsInternal( true );
auto posY = new PROPERTY<BOARD_ITEM, int>( _HKI( "Position Y" ), &ZONE::SetY,
&ZONE::GetY, PROPERTY_DISPLAY::PT_COORD,
ORIGIN_TRANSFORMS::ABS_Y_COORD );
auto posY = new PROPERTY<ZONE, int>( _HKI( "Position Y" ), NO_SETTER( ZONE, int ),
reinterpret_cast<int (ZONE::*)() const>( &ZONE::GetY ),
PROPERTY_DISPLAY::PT_COORD,
ORIGIN_TRANSFORMS::ABS_Y_COORD );
posY->SetIsInternal( true );
propMgr.ReplaceProperty( TYPE_HASH( BOARD_ITEM ), _HKI( "Position X" ), posX );