Removed up and down arrows

This commit is contained in:
MikeTheWatchGuy 2019-04-28 14:50:18 -04:00
parent fc7a382af1
commit f3387fa186
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ graph_elem = sg.Graph((600, 400), (0, 400), (600, 0), enable_events=True, key='_
layout = [[sg.Text('Ball Test'), sg.T('My IP {}'.format(socket.gethostbyname(socket.gethostname())))],
[graph_elem],
[sg.Up(), sg.Down()],
# [sg.Up(), sg.Down()],
[sg.B('Kick'), sg.Button('Exit')]]
window = sg.Window('Window Title', layout, ).Finalize()