Fix for ICON_BASE64_LIST having been renamed in PySimpleGUI but not in the demo

This commit is contained in:
PySimpleGUI 2021-05-24 09:46:24 -04:00
parent d3cb3f74c2
commit 2925d52c69
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