From de1d783ffca0d19a4e27cb0362e78241304005b9 Mon Sep 17 00:00:00 2001 From: oleting Date: Tue, 22 Dec 2020 21:30:30 +0100 Subject: [PATCH] + test --- .gitignore | 7 +++---- .vscode/launch.json | 2 +- gui.py | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index e856182..7fa8e3a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ -__pycache__/* __pycache__/ -res/output/* -res/input/* -.vscode/* +res/output/ +res/input/ +.vscode/ *.pyc \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index eaba26a..6e0fa0a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "name": "Python: Aktuelle Datei", "type": "python", "request": "launch", - "program": "interpret_source.py", + "program": "gui.py", "console": "integratedTerminal" } ] diff --git a/gui.py b/gui.py index cb72d46..77e4206 100644 --- a/gui.py +++ b/gui.py @@ -13,7 +13,7 @@ java_file_list_column = [ sg.FileBrowse(file_types=(('Java-File', '*.java'), ('ALL Files','*.*')), key='-JAVA FILE-'), # ('ALL Files','*.*') ], [ - sg.Image(), + sg.popup_ok(title='Hello') ], ]