diff --git a/PySimpleGUI27.py b/PySimpleGUI27.py index 5a1bcdf4..16268e24 100644 --- a/PySimpleGUI27.py +++ b/PySimpleGUI27.py @@ -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,