Altium schematic: fix ISSOLID flag for text frames.

Fixed in master by 24d3df5416
This commit is contained in:
Alex Shvartzkop 2023-09-11 14:23:54 +03:00
parent 6ee909b958
commit 6daef080e3
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ ASCH_TEXT_FRAME::ASCH_TEXT_FRAME( const std::map<wxString, wxString>& aProps )
AreaColor = ALTIUM_PARSER::ReadInt( aProps, "AREACOLOR", 0 );
BorderColor = ALTIUM_PARSER::ReadInt( aProps, "COLOR", 0 );
IsSolid = ALTIUM_PARSER::ReadBool( aProps, "WORDWRAP", true );
IsSolid = ALTIUM_PARSER::ReadBool( aProps, "ISSOLID", false );
Alignment = ReadEnum<ASCH_TEXT_FRAME_ALIGNMENT>( aProps, "ALIGNMENT", 1, 3,
ASCH_TEXT_FRAME_ALIGNMENT::LEFT );