+ started with changable outputfile

This commit is contained in:
oleting
2020-12-22 19:14:23 +01:00
parent 6b9ae6e21c
commit 82a88c471f

5
gui.py
View File

@@ -54,6 +54,11 @@ layout = [
window = sg.Window('Nassi Viewer', layout, resizable=True) window = sg.Window('Nassi Viewer', layout, resizable=True)
def get_output_file():
values = window.read()
output_file = values['-OUTPUT FOLDER-']
return output_file
while True: while True:
event, values = window.read() event, values = window.read()
if event == 'Exit' or event == sg.WIN_CLOSED: if event == 'Exit' or event == sg.WIN_CLOSED: