From 02a7299618cb012b7c5d4a6d1cf8f46a6cdfdcdf Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sat, 4 Jul 2020 23:41:50 +0200 Subject: [PATCH] Fix text alignment attributes Was broken for "left" Resolves: #228 --- boxes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/__init__.py b/boxes/__init__.py index 1be07bb..b2e84c3 100755 --- a/boxes/__init__.py +++ b/boxes/__init__.py @@ -1230,7 +1230,7 @@ class Boxes: "top": -height, "middle": -0.5 * height, "bottom": 0, - "left": "start", + "left": "left", "center": "middle", "right": "end", }