placed version number into window title

This commit is contained in:
k4yt3x 2019-08-07 22:56:41 -04:00
parent ad6308d385
commit 7a69d58e28

View File

@ -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)