Skip to content

Commit 1834c88

Browse files
authored
Fix small mistake
Fix small mistake in the solution of Review Exercises in ch 18.6
1 parent a0f5a35 commit 1834c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch18-graphical-user-interfaces/6-control-layout-with-geometry-managers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
# Create the Label and Entry widgets for "Address Line 2"
4545
lbl_address2 = tk.Label(master=frm_form, text="Address Line 2:")
46-
ent_address2 = tk.Entry(master=frm_form, width=5)
46+
ent_address2 = tk.Entry(master=frm_form, width=50)
4747
# Place the widgets in the fourth row of the grid
4848
lbl_address2.grid(row=3, column=0, sticky=tk.E)
4949
ent_address2.grid(row=3, column=1)

0 commit comments

Comments
 (0)