summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/lettering/font.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/lettering/font.py b/lib/lettering/font.py
index 93e550d8..9f4d335a 100644
--- a/lib/lettering/font.py
+++ b/lib/lettering/font.py
@@ -227,6 +227,8 @@ class Font(object):
letter_group = self._render_line(destination_group, line, position, glyph_set)
if (back_and_forth and self.reversible and i % 2 == 1) or variant == '←':
letter_group[:] = reversed(letter_group)
+ for group in letter_group:
+ group[:] = reversed(group)
position.x = 0
position.y += self.leading