From 82a88c471fd4f476bac55a624bb15e1608a2f434 Mon Sep 17 00:00:00 2001 From: oleting Date: Tue, 22 Dec 2020 19:14:23 +0100 Subject: [PATCH] + started with changable outputfile --- gui.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gui.py b/gui.py index fe1e4cf..276d852 100644 --- a/gui.py +++ b/gui.py @@ -54,6 +54,11 @@ layout = [ 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: event, values = window.read() if event == 'Exit' or event == sg.WIN_CLOSED: