This commit is contained in:
weckyy702
2020-12-26 14:46:51 +01:00
3 changed files with 4 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ class gui:
values["-JAVA FOLDER-"],
)
output_path = values['-OUTPUT FOLDER-']
nassi(file_path, output_path)
nassi(file_path, output_path, gui=self)
fnames = output(values)
window['-OUTPUT FILE LIST-'].update(fnames)

View File

@@ -4,8 +4,8 @@ from interpreter.NassiShneidermann import NassiShneidermanDiagram
from draw.Iinstruction import *
def nassi(filepath:str, output_path: str):
NSD = NassiShneidermanDiagram(False)
def nassi(filepath:str, output_path: str, gui):
NSD = NassiShneidermanDiagram(gui=gui)
NSD.load_from_file(filepath)
NSD.convert_to_image(output_path + "/Nassi-Shneider-Diagramm", 500)