Skip to content

Commit c6e9e61

Browse files
committed
Increased window size
1 parent 8a60fd1 commit c6e9e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/python/[tkinter]/basics/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from tkinter import Tk, Label
1111
class App(Tk):
1212
def __init__(self):
1313
Tk.__init__(self)
14-
self.geometry("100x100")
14+
self.geometry("200x200")
1515

1616
self.lbl = Label(self, text='Hello, World!')
1717
self.lbl.pack(expand=1)

0 commit comments

Comments
 (0)