From b906d73696fcfed57734f69dad8d400ccad71549 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Sat, 25 May 2019 10:55:54 -0400 Subject: [PATCH] Update PySimpleGUI27.py --- PySimpleGUI27.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,