From 1e02c6aa71eccf8c56bd6446cc706bf11c51040d Mon Sep 17 00:00:00 2001 From: Alex Shvartzkop Date: Mon, 11 Sep 2023 14:18:06 +0300 Subject: [PATCH] Altium schematic: WORDWRAP is false when missing. --- eeschema/sch_plugins/altium/altium_parser_sch.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/eeschema/sch_plugins/altium/altium_parser_sch.cpp b/eeschema/sch_plugins/altium/altium_parser_sch.cpp index 3907e47613..a7dfeeebfd 100644 --- a/eeschema/sch_plugins/altium/altium_parser_sch.cpp +++ b/eeschema/sch_plugins/altium/altium_parser_sch.cpp @@ -317,8 +317,6 @@ ASCH_TEXT_FRAME::ASCH_TEXT_FRAME( const std::map& aProps ) : BorderWidth = ReadKiCadUnitFrac( aProps, "LINEWIDTH" ); isSolid = ALTIUM_PARSER::ReadBool( aProps, "ISSOLID", false ); - IsWordWrapped = ALTIUM_PARSER::ReadBool( aProps, "WORDWRAP", true ); - Alignment = ReadEnum( aProps, "ALIGNMENT", 1, 3, ASCH_TEXT_FRAME_ALIGNMENT::LEFT ); }