Altium schematic: WORDWRAP is false when missing.

This commit is contained in:
Alex Shvartzkop 2023-09-11 14:18:06 +03:00
parent c66d4bab9c
commit 1e02c6aa71
1 changed files with 0 additions and 2 deletions

View File

@ -317,8 +317,6 @@ ASCH_TEXT_FRAME::ASCH_TEXT_FRAME( const std::map<wxString, wxString>& aProps ) :
BorderWidth = ReadKiCadUnitFrac( aProps, "LINEWIDTH" ); BorderWidth = ReadKiCadUnitFrac( aProps, "LINEWIDTH" );
isSolid = ALTIUM_PARSER::ReadBool( aProps, "ISSOLID", false ); isSolid = ALTIUM_PARSER::ReadBool( aProps, "ISSOLID", false );
IsWordWrapped = ALTIUM_PARSER::ReadBool( aProps, "WORDWRAP", true );
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 );
} }