mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
13 lines
321 B
Python
13 lines
321 B
Python
from tkinter import *
|
|
|
|
def StateButton(self, enable=True):
|
|
button = [
|
|
self.button_game_extract,
|
|
self.button_install_mod,
|
|
self.button_prepare_file
|
|
]
|
|
for widget in button:
|
|
if enable:
|
|
widget.config(state=NORMAL)
|
|
else:
|
|
widget.config(state=DISABLED)
|