|
7 | 7 | #window size (width x height)
|
8 | 8 | root.geometry("600x350")
|
9 | 9 | #title of window
|
10 | | -root.title("Distance Unit Convertor") |
| 10 | +root.title("Distance Unit Converter") |
11 | 11 | #disabling resizing of window
|
12 | 12 | root.resizable(0, 0)
|
13 | 13 | #background colour of window
|
@@ -45,7 +45,7 @@ def convert():
|
45 | 45 | op_opt.set("Select Unit")
|
46 | 46 |
|
47 | 47 | #Adding Widgets
|
48 | | -greeting = Label(text="Welcome to Distance Unit Convertor !!", bg="lavender", width=40, height=2, bd=2, relief="ridge", font = ("Lucida Console", 10, "italic")) |
| 48 | +greeting = Label(text="Welcome to Distance Unit Converter !!", bg="lavender", width=40, height=2, bd=2, relief="ridge", font = ("Lucida Console", 10, "italic")) |
49 | 49 | greeting.grid(row = 0, column = 1, pady=20, padx=12)
|
50 | 50 |
|
51 | 51 | #---input row---
|
|
0 commit comments