Changed how the parameter list works

This commit is contained in:
PySimpleGUI 2020-02-24 14:56:53 -05:00
parent 9f0159c546
commit 136ac37d42
1 changed files with 2 additions and 1 deletions

View File

@ -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')