From 8e5bde93f645860f87045192a8a00d5cadeb82ad Mon Sep 17 00:00:00 2001 From: krande Date: Tue, 5 Nov 2024 13:00:11 +0100 Subject: [PATCH] support T-girders --- src/ada/cadit/gxml/write/write_sections.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ada/cadit/gxml/write/write_sections.py b/src/ada/cadit/gxml/write/write_sections.py index fc37b5eda..837621168 100644 --- a/src/ada/cadit/gxml/write/write_sections.py +++ b/src/ada/cadit/gxml/write/write_sections.py @@ -24,6 +24,8 @@ def add_sections(root: ET.Element, part: Part): add_i_section(section, sections_elem) elif section.type == section.TYPES.IPROFILE and section.w_btn != section.w_top: add_unsymm_i_section(section, sections_elem) + elif section.type == section.TYPES.TPROFILE and section.w_btn != section.w_top: + add_unsymm_i_section(section, sections_elem) elif section.type == section.TYPES.BOX: add_box_section(section, sections_elem) elif section.type == section.TYPES.CHANNEL: