mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 11:18:26 +02:00
the settings button wasn't disabled when installing the mod
This commit is contained in:
parent
3f58094d59
commit
d3ff94b940
1 changed files with 6 additions and 2 deletions
|
@ -587,5 +587,9 @@ class SelectPack(ttk.Frame):
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
match state:
|
match state:
|
||||||
case InstallerState.IDLE: self.combobox.config(state="readonly")
|
case InstallerState.IDLE:
|
||||||
case InstallerState.INSTALLING: self.combobox.config(state="disabled")
|
self.combobox.config(state="readonly")
|
||||||
|
self.button_settings.config(state="normal")
|
||||||
|
case InstallerState.INSTALLING:
|
||||||
|
self.combobox.config(state="disabled")
|
||||||
|
self.button_settings.config(state="disabled")
|
||||||
|
|
Loading…
Reference in a new issue