Skip to content

Commit dc39743

Browse files
Update translator.py
1 parent dd59632 commit dc39743

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Translator/translator.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
root = tk.Tk()
99
root.title('Langauge Translator')
1010
root.geometry('530x330')
11+
root.maxsize(530,330)
12+
root.minsize(530,330)
1113

1214

1315
def translate():
@@ -182,4 +184,4 @@ def clear():
182184
clear = Button(root,text="Clear",relief=RIDGE,borderwidth=3,font=('verdana',10,'bold'),cursor="hand2",command=clear)
183185
clear.place(x=280,y=280)
184186

185-
root.mainloop()
187+
root.mainloop()

0 commit comments

Comments
 (0)