From 1834c88449247f5883b5bf98b7680dc08930915e Mon Sep 17 00:00:00 2001 From: LyLiou <98974624+LyLiou@users.noreply.github.com> Date: Thu, 17 Nov 2022 11:13:09 +0800 Subject: [PATCH] Fix small mistake Fix small mistake in the solution of Review Exercises in ch 18.6 --- .../6-control-layout-with-geometry-managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch18-graphical-user-interfaces/6-control-layout-with-geometry-managers.py b/ch18-graphical-user-interfaces/6-control-layout-with-geometry-managers.py index 5c2869a..2a7d663 100644 --- a/ch18-graphical-user-interfaces/6-control-layout-with-geometry-managers.py +++ b/ch18-graphical-user-interfaces/6-control-layout-with-geometry-managers.py @@ -43,7 +43,7 @@ # Create the Label and Entry widgets for "Address Line 2" lbl_address2 = tk.Label(master=frm_form, text="Address Line 2:") -ent_address2 = tk.Entry(master=frm_form, width=5) +ent_address2 = tk.Entry(master=frm_form, width=50) # Place the widgets in the fourth row of the grid lbl_address2.grid(row=3, column=0, sticky=tk.E) ent_address2.grid(row=3, column=1)