()
| 79 | return random.choice(sg.EMOJI_BASE64_LIST) |
| 80 | |
| 81 | def make_toolbar(): |
| 82 | layout = [[sg.T('❎', enable_events=True, key='Exit')]] |
| 83 | for i in range(6): |
| 84 | layout += [[sg.B(image_data = convert_to_bytes(random_image(), (30,30))), |
| 85 | sg.B(image_data = convert_to_bytes(random_image(), (30,30)))]] |
| 86 | return sg.Window('', layout, element_padding=(0,0), margins=(0,0), finalize=True, no_titlebar=True, grab_anywhere=True) |
| 87 | |
| 88 | def main(): |
| 89 |
no test coverage detected