From 7a69d58e28d53db486dcac5dc16abbdd7c1da6f7 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Wed, 7 Aug 2019 22:56:41 -0400 Subject: [PATCH] placed version number into window title --- bin/video2x_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/video2x_gui.py b/bin/video2x_gui.py index e6ca21b..63735e4 100644 --- a/bin/video2x_gui.py +++ b/bin/video2x_gui.py @@ -57,7 +57,7 @@ class Video2xGui(): # create main window self.main_window = Tk() - self.main_window.title('Video2X GUI') + self.main_window.title(f'Video2X GUI {VERSION}') self.main_frame = Frame() self.main_frame.pack(fill=BOTH, expand=True)