mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 23:36:20 +00:00
Fix #3577. Don't force uppercase in schedules.
This commit is contained in:
@@ -351,7 +351,7 @@ class Scheduler:
|
|||||||
wrap_text: if True, text will be wrapped to fit in cell
|
wrap_text: if True, text will be wrapped to fit in cell
|
||||||
cell_width: width of cell, used for wrapping text
|
cell_width: width of cell, used for wrapping text
|
||||||
"""
|
"""
|
||||||
text_lines = [str(p).upper() for p in p_tags]
|
text_lines = [str(p) for p in p_tags]
|
||||||
box_alignment_params = SvgWriter.get_box_alignment_parameters(box_alignment)
|
box_alignment_params = SvgWriter.get_box_alignment_parameters(box_alignment)
|
||||||
text_params = {
|
text_params = {
|
||||||
"font-size": font_size,
|
"font-size": font_size,
|
||||||
|
|||||||
Reference in New Issue
Block a user