Fix #3577. Don't force uppercase in schedules.

This commit is contained in:
Dion Moult
2023-08-12 16:16:36 +10:00
parent ec0d3c1129
commit afe87a6aec
@@ -351,7 +351,7 @@ class Scheduler:
wrap_text: if True, text will be wrapped to fit in cell
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)
text_params = {
"font-size": font_size,