debug open results from file

dev_dylan
Theophile Terraz 2026-03-10 11:39:27 +01:00
parent 5eaac204d5
commit 92f4793181
1 changed files with 2 additions and 2 deletions

View File

@ -1810,10 +1810,10 @@ class ApplicationWindow(QMainWindow, ListedSubWindow, WindowToolKit):
if dialog.exec_():
file_name = dialog.selectedFiles()
logger.info(f"Select results: {file_name}")
logger.info(f"Select results: {file_name[0]}")
solver = None
if ".BIN" in file_name:
if ".BIN" in file_name[0]:
solver = Mage8("Mage8")
else:
solver = Rubar3("Rubar3")