Merge pull request #2634 from PySimpleGUI/Dev-latest

Changed how the parameter list works
This commit is contained in:
PySimpleGUI 2020-02-24 14:57:14 -05:00 committed by GitHub
commit 7b4784bd0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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')