From f519bbd5545ef7df10e609005a016ee5c2a56c37 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Sun, 24 Jul 2022 00:18:12 +0200 Subject: [PATCH] added a textwrap to the progress bar description --- source/gui/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gui/install.py b/source/gui/install.py index 38e79f5..8954087 100644 --- a/source/gui/install.py +++ b/source/gui/install.py @@ -438,7 +438,7 @@ class ProgressBar(ttk.LabelFrame): self.progress_bar = ttk.Progressbar(self, orient="horizontal") self.progress_bar.grid(row=1, column=1, sticky="nsew") - self.description = ttk.Label(self, text="", anchor="center", font=("TkDefaultFont", 10)) + self.description = ttk.Label(self, text="", anchor="center", font=("TkDefaultFont", 10), wraplength=350) self.description.grid(row=2, column=1, sticky="nsew") def set_state(self, state: InstallerState) -> None: