Skip to content

Commit

Permalink
Add version string to title
Browse files Browse the repository at this point in the history
  • Loading branch information
steakelum committed Sep 2, 2023
1 parent 6a1427e commit 410fe95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/mainWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 410fe95

Please sign in to comment.