From 16e0cad559fea036ac123219667723228a70eb8f Mon Sep 17 00:00:00 2001 From: raphael60650 Date: Sun, 20 Jun 2021 12:45:10 +0200 Subject: [PATCH] install mod button will now show game version --- source/patch_file.py | 1 + 1 file changed, 1 insertion(+) diff --git a/source/patch_file.py b/source/patch_file.py index a5bcd36..3c84ae0 100644 --- a/source/patch_file.py +++ b/source/patch_file.py @@ -26,6 +26,7 @@ def patch_file(self): if self.patch_track(tracks, total_track) != 0: return self.button_install_mod.grid(row=2, column=1, columnspan=2, sticky="NEWS") + self.button_install_mod.config(text=f'{self.translate("Installer le mod")} (v{self.VERSION})') except: self.log_error() finally: self.Progress(show=False)