Turned off ehcoing stdout. Was slowing things down a bit too much.

This commit is contained in:
PySimpleGUI 2021-02-05 19:46:55 -05:00
parent 3e4b1a73b3
commit 5381042d48
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ def make_window(theme):
[sg.Image(data=sg.DEFAULT_BASE64_ICON, k='-IMAGE-')],
[sg.ProgressBar(1000, orientation='h', size=(20, 20), key='-PROGRESS BAR-'), sg.Button('Test Progress bar')]]
logging_layout = [[sg.Text("Anything printed will display here!")], [sg.Output(size=(60,15),echo_stdout_stderr=True, font='Courier 8')]]
logging_layout = [[sg.Text("Anything printed will display here!")], [sg.Output(size=(60,15), font='Courier 8')]]
graphing_layout = [[sg.Text("Anything you would use to graph will display here!")],
[sg.Graph((200,200), (0,0),(200,200),background_color="black", key='-GRAPH-', enable_events=True)],