Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
4bd4fff111
commit
9c0cc4b441
1 changed files with 2 additions and 2 deletions
|
@ -299,12 +299,12 @@ root = tk.Tk()
|
||||||
|
|
||||||
width_element: int = 10
|
width_element: int = 10
|
||||||
|
|
||||||
my_frame = ttk.Label(
|
my_object = ttk.Label(
|
||||||
root,
|
root,
|
||||||
width=width_element,
|
width=width_element,
|
||||||
text="A label thing",
|
text="A label thing",
|
||||||
)
|
)
|
||||||
my_frame.grid(row=0, column=0, sticky="w")
|
my_object.grid(row=0, column=0, sticky="w")
|
||||||
|
|
||||||
|
|
||||||
root.mainloop()
|
root.mainloop()
|
||||||
|
|
Loading…
Reference in a new issue