summaryrefslogtreecommitdiff
path: root/ui/main_window.py
diff options
context:
space:
mode:
Diffstat (limited to 'ui/main_window.py')
-rw-r--r--ui/main_window.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/main_window.py b/ui/main_window.py
index 90294ac..9090d0f 100644
--- a/ui/main_window.py
+++ b/ui/main_window.py
@@ -55,7 +55,8 @@ _LIGHT_QSS = os.path.join(os.path.dirname(os.path.abspath(__file__)), "style_lig
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
- self.setWindowTitle("LabDAQ")
+ from core.version import __version__
+ self.setWindowTitle(f"LabDAQ v{__version__}")
self.setMinimumSize(1000, 640)
self.registry = DeviceRegistry()