diff options
author | Pravin Dalve | 2021-06-22 00:33:41 +0530 |
---|---|---|
committer | Pravin Dalve | 2021-06-22 00:33:41 +0530 |
commit | ce501c2d9e437e3988105595d2e9068045a98720 (patch) | |
tree | 3c09fc3bebb65db5942cd4f4a5425bde87978428 /Container.py | |
parent | 3f8095e27df1ea62c4356c08de09cc42ffca00ed (diff) | |
download | Chemical-Simulator-GUI-ce501c2d9e437e3988105595d2e9068045a98720.tar.gz Chemical-Simulator-GUI-ce501c2d9e437e3988105595d2e9068045a98720.tar.bz2 Chemical-Simulator-GUI-ce501c2d9e437e3988105595d2e9068045a98720.zip |
update compounds method added in all unit operations, material stream and material stream dockwidget
Diffstat (limited to 'Container.py')
-rw-r--r-- | Container.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Container.py b/Container.py index 0ad3c50..3068c78 100644 --- a/Container.py +++ b/Container.py @@ -98,6 +98,9 @@ class Container(): def add_compounds(self,comp): self.compounds = comp + def update_compounds(self): + self.graphics.update_compounds() + def add_thermo_package(self,thermo): self.thermo_package = thermo |