Changed how the parameter list works
This commit is contained in:
parent
9f0159c546
commit
136ac37d42
|
@ -12,6 +12,7 @@ import PySimpleGUI as sg
|
|||
|
||||
# Here we're running a simple "pip list" command and using the built-in animated GIF.
|
||||
|
||||
output = sg.shell_with_animation('pip', 'list', message='Loading your pip list', background_color='white', text_color='red', font='Helvetica 15')
|
||||
output = sg.shell_with_animation('pip', ('list',), message='Loading...', font='Helvetica 15')
|
||||
# output = sg.shell_with_animation(r"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", message='Loading...', font='Helvetica 15')
|
||||
|
||||
sg.popup_scrolled(output, font='Courier 10')
|
||||
|
|
Loading…
Reference in New Issue