Merge pull request #4315 from PySimpleGUI/Dev-latest

Fix for ICON_BASE64_LIST having been renamed in PySimpleGUI but not i…
This commit is contained in:
PySimpleGUI 2021-05-24 09:46:39 -04:00 committed by GitHub
commit 1260bda762
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ def convert_to_bytes(file_or_bytes, resize=None, fill=False):
return bio.getvalue()
def random_image():
return random.choice(sg.ICON_BASE64_LIST)
return random.choice(sg.EMOJI_BASE64_LIST)
def make_toolbar():
layout = [[sg.T('', enable_events=True, key='Exit')]]
@ -92,7 +92,7 @@ def main():
if size[0] > 20:
size = (size[0]-20, size[1]-20)
elif event in ('Next', '-BUTTON IMAGE-'):
image = random.choice(sg.ICON_BASE64_LIST)
image = random.choice(sg.EMOJI_BASE64_LIST)
elif event_window == toolbar:
image = event_window[event].ImageData