mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-02 18:58:27 +02:00
added a textwrap to the progress bar description
This commit is contained in:
parent
c2e4833ee4
commit
f519bbd554
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue