From b27f667a15331ab7f490c43c2b719a1da12262e9 Mon Sep 17 00:00:00 2001 From: PoryGone <98504756+PoryGone@users.noreply.github.com> Date: Sun, 27 Oct 2024 20:53:11 -0400 Subject: [PATCH] Core: Add Version string to Launcher title (#4107) --- Launcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Launcher.py b/Launcher.py index 85e49da7..84db298b 100644 --- a/Launcher.py +++ b/Launcher.py @@ -254,7 +254,7 @@ def run_gui(): _client_layout: Optional[ScrollBox] = None def __init__(self, ctx=None): - self.title = self.base_title + self.title = self.base_title + " " + Utils.__version__ self.ctx = ctx self.icon = r"data/icon.png" super().__init__()