File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ def __init__(
221221 self .local_group = None
222222
223223 self ._text = text
224- self ._baseline = - 1.0
224+ self .baseline = - 1.0
225225
226226 self .base_alignment = base_alignment
227227
@@ -306,7 +306,7 @@ def anchor_point(self):
306306
307307 @anchor_point .setter
308308 def anchor_point (self , new_anchor_point ):
309- if new_anchor_point [1 ] == self ._baseline :
309+ if new_anchor_point [1 ] == self .baseline :
310310 self ._anchor_point = (new_anchor_point [0 ], - 1.0 )
311311 else :
312312 self ._anchor_point = new_anchor_point
@@ -330,7 +330,7 @@ def anchored_position(self, new_position):
330330 - (self ._bounding_box [0 ] * self .scale )
331331 - round (self ._anchor_point [0 ] * (self ._bounding_box [2 ] * self .scale ))
332332 )
333- if self ._anchor_point [1 ] == self ._baseline :
333+ if self ._anchor_point [1 ] == self .baseline :
334334 self .y = int (
335335 new_position [1 ]
336336 - (self ._y_offset * self .scale )
You can’t perform that action at this time.
0 commit comments