Altium schematic: fix ISSOLID flag for text frames.
Fixed in master by 24d3df5416
This commit is contained in:
parent
6ee909b958
commit
6daef080e3
|
@ -274,7 +274,7 @@ ASCH_TEXT_FRAME::ASCH_TEXT_FRAME( const std::map<wxString, wxString>& aProps )
|
||||||
AreaColor = ALTIUM_PARSER::ReadInt( aProps, "AREACOLOR", 0 );
|
AreaColor = ALTIUM_PARSER::ReadInt( aProps, "AREACOLOR", 0 );
|
||||||
BorderColor = ALTIUM_PARSER::ReadInt( aProps, "COLOR", 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,
|
Alignment = ReadEnum<ASCH_TEXT_FRAME_ALIGNMENT>( aProps, "ALIGNMENT", 1, 3,
|
||||||
ASCH_TEXT_FRAME_ALIGNMENT::LEFT );
|
ASCH_TEXT_FRAME_ALIGNMENT::LEFT );
|
||||||
|
|
Loading…
Reference in New Issue