Update PySimpleGUI27.py

This commit is contained in:
MikeTheWatchGuy 2019-05-25 10:55:54 -04:00
parent 4d756d58cb
commit b906d73696
1 changed files with 1 additions and 1 deletions

View File

@ -5081,7 +5081,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
elif toplevel_form.TextJustification is not None:
justification = toplevel_form.TextJustification
else:
justification = DEFAULT_TEXT_JUSTIFICAION
justification = DEFAULT_TEXT_JUSTIFICATION
justify = tk.LEFT if justification == 'left' else tk.CENTER if justification == 'center' else tk.RIGHT
anchor = tk.NW if justification == 'left' else tk.N if justification == 'center' else tk.NE
# tktext_label = tk.Label(tk_row_frame, textvariable=stringvar, width=width, height=height,