diff options
author | brenda-br | 2023-01-29 10:52:16 +0530 |
---|---|---|
committer | brenda-br | 2023-01-29 10:52:16 +0530 |
commit | 613060d6259ded571e137556c92ebdbac8950a54 (patch) | |
tree | 7e393d53a1bedefbd7c50a0a6762dda81ec23dc0 | |
parent | 9e587690ebf2a16f33d5a8ee4904e7a36844371d (diff) | |
download | Chemical-Simulator-GUI-613060d6259ded571e137556c92ebdbac8950a54.tar.gz Chemical-Simulator-GUI-613060d6259ded571e137556c92ebdbac8950a54.tar.bz2 Chemical-Simulator-GUI-613060d6259ded571e137556c92ebdbac8950a54.zip |
Fix #44 Simulation running after reopening
-rw-r--r-- | Redo.dat | bin | 0 -> 26458 bytes | |||
-rw-r--r-- | Undo.dat | bin | 25570 -> 0 bytes | |||
-rw-r--r-- | mainApp.py | 3 |
3 files changed, 3 insertions, 0 deletions
Binary files differBinary files differ @@ -351,6 +351,9 @@ class MainApp(QMainWindow,ui): self.container.result = temp_result DockWidget.show_result(dock_widget_lst) + for i in dock_widget_lst: + i.param() + except Exception as e: print(e) |