1
Fork 0

Changed Font Sizes

This commit is contained in:
Jake Howard 2015-05-12 18:42:05 +01:00
parent e34d53fdd4
commit 5f4d456388
1 changed files with 2 additions and 2 deletions

4
GUI.py
View File

@ -38,8 +38,8 @@ class Main_Window:
self.exit_button.pack(ipadx=PADDING_BUTTON/3, ipady=PADDING_BUTTON, padx=PADDING_BUTTON, pady=PADDING_BUTTON)
self.exit_button.bind('<Button-1>', self.close)
Style().configure("Menu.TButton", font=("Lucida", 25))
Style().configure("Quit.TButton", font=("Lucida", 15))
Style().configure("Menu.TButton", font=("Lucida", 21))
Style().configure("Quit.TButton", font=("Lucida", 13))
self.options_window = Options_Window()
logging.debug("GUI Generated.")