mirror of https://gitlab.com/pamhyr/pamhyr2
more debug
parent
440996b636
commit
4e888d9db0
|
|
@ -56,6 +56,10 @@ class Results(object):
|
|||
def set(self, key, value):
|
||||
self._meta_data[key] = value
|
||||
|
||||
@property
|
||||
def is_valid(self):
|
||||
return ("timestamps" in self._meta_data)
|
||||
|
||||
def get(self, key):
|
||||
return self._meta_data[key]
|
||||
|
||||
|
|
|
|||
|
|
@ -301,7 +301,7 @@ class InitialConditionsWindow(PamhyrWindow):
|
|||
)
|
||||
dlg.exec_()
|
||||
results = self._tmp_results
|
||||
if "timestamps" in results._meta_data:
|
||||
if results.is_valid:
|
||||
self._import_from_results(results)
|
||||
|
||||
def _import_from_results(self, results):
|
||||
|
|
|
|||
|
|
@ -1432,6 +1432,10 @@ class ApplicationWindow(QMainWindow, ListedSubWindow, WindowToolKit):
|
|||
if results is None:
|
||||
return
|
||||
|
||||
# results does not have values, for example if geometry missmatch
|
||||
if not results.is_valid:
|
||||
return
|
||||
|
||||
# Windows already opened
|
||||
if self.sub_window_exists(
|
||||
ResultsWindow,
|
||||
|
|
|
|||
Loading…
Reference in New Issue