From 5f4d4563888d3e33d9ea079062a180e1fc729b5f Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 12 May 2015 18:42:05 +0100 Subject: [PATCH] Changed Font Sizes --- GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index ea33404..4554902 100644 --- a/GUI.py +++ b/GUI.py @@ -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('', 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.")