From 1b34829e62ae2bae2a86ce81800b4e8c67c85b29 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Thu, 21 May 2015 13:08:46 +0100 Subject: [PATCH] changed font size --- GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index a998115..38cd2f4 100644 --- a/GUI.py +++ b/GUI.py @@ -19,7 +19,7 @@ class Main_Window: self.title.pack(side="top", padx=PADDING_BUTTON, pady=PADDING_TITLE/2) self.version_info = Label(self.master) - self.version_info.config(text="Version {ID} tagged {DATE}".format(**VERSION), font=("Courier New", 15)) + self.version_info.config(text="Version {ID} tagged {DATE}".format(**VERSION), font=("Courier New", 13)) self.version_info.pack(side="top", padx=PADDING_BUTTON, pady=PADDING_BUTTON/2) self.start_button = Button(self.master, style="Menu.TButton") @@ -43,7 +43,7 @@ class Main_Window: self.exit_button.bind('', self.close) self.about_info = Label(self.master) - self.about_info.config(text="Game Created by TheOrangeOne!", font=("Courier New", 14)) + self.about_info.config(text="Game Created by TheOrangeOne!", font=("Courier New", 9)) self.about_info.bind("", self.show_site) self.about_info.pack(side="top", padx=PADDING_BUTTON, pady=PADDING_BUTTON/2)