2

I want to disable the Start update button in my code

code :

import PySimpleGUI as sg
import time
mylist = ["Reading files from the internet","downloading new version","writing intents","Training Assistant","Waiting for tensorflow backend","Successfully trained","Completing update","Update successful"]
progressbar = [
    [sg.ProgressBar(len(mylist), orientation='h', size=(51, 10), key='progressbar')]
]
outputwin = [
    [sg.Output(size=(78,20))]
]
layout = [
    [sg.Frame('Progress',layout= progressbar)],
    [sg.Frame('Output', layout = outputwin)],
    [sg.Submit('Start update'),sg.Cancel()]

]
window = sg.Window('Assistant updater', layout)
progress_bar = window['progressbar']
while True:
    event, values = window.read(timeout=10)
    if event == 'Cancel'  or event is None:
        break
    elif event == 'Start update':
        for i,item in enumerate(mylist):
            print(item)
            if item=="Reading files from the internet":
                print('New line started')
            time.sleep(1)
            progress_bar.UpdateBar(i + 1)
        

Can anyone please help me so that I can disable the button after the Start update button so it won't be clicked twice

Sashank
  • 557
  • 6
  • 20

1 Answers1

9

You have to disable button after click until process is complete.

You can try this :

window['Start update'].update(disabled=True)

after your process complete you can enable your button :

window['Start update'].update(disabled=False)

Try This :

while True:
    event, values = window.read(timeout=10)
    if event == 'Cancel'  or event is None:
        break
    elif event == 'Start update':
        window['Start update'].update(disabled=True)
        for i,item in enumerate(mylist):
            print(item)
            if item=="Reading files from the internet":
                print('New line started')
            time.sleep(1)
            progress_bar.UpdateBar(i + 1)
        window['Start update'].update(disabled=False)
Bhargav Desai
  • 941
  • 1
  • 5
  • 17