fix blank

This commit is contained in:
Will McGugan
2022-11-24 17:49:22 +08:00
parent 84f24d947b
commit 4057744c88

View File

@@ -339,7 +339,7 @@ class StylesCache:
elif border_left:
line = [left, make_blank(width - 1, background_style)]
elif border_right:
line = [make_blank(width, background_style), right]
line = [make_blank(width - 1, background_style), right]
else:
line = [make_blank(width, background_style)]
else: