From 410fe957480dbfa8d175b26c4df94f150e9187f8 Mon Sep 17 00:00:00 2001 From: steakelum Date: Fri, 1 Sep 2023 21:38:58 -0400 Subject: [PATCH] Add version string to title --- ui/mainWindow.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/mainWindow.py b/ui/mainWindow.py index 89f50be3..fd6cf394 100644 --- a/ui/mainWindow.py +++ b/ui/mainWindow.py @@ -3,6 +3,7 @@ the UI elements. Able to reference all elements and the signals they emit. """ +csfrat_version_string = "v1.1" # shows in title, version of tool # For handling debug output import logging as log @@ -124,7 +125,7 @@ def __init__(self, debug=False): def _initUI(self): """Sets window parameters, fonts, initializes UI elements.""" # setup main window parameters - title = "C-SFRAT" + title = "C-SFRAT " + csfrat_version_string left = 100 top = 100 width = 1280