This commit is contained in:
jaseg 2023-07-21 14:46:35 +02:00
parent 21ca5f7f5c
commit 09c9d26728

View file

@ -308,7 +308,11 @@ class DrawnProperty(TextMixin):
@property
def h_align(self):
return self.effects.justify.h_str
j = self.effects.justify.h_str
if False: #self.at.rotation in (270):
return {'left': 'right', 'right': 'left'}.get(j, j)
else:
return j
@property
def rotation(self):