diff options
author | pravindalve | 2020-05-22 22:12:43 +0530 |
---|---|---|
committer | pravindalve | 2020-05-22 22:12:43 +0530 |
commit | 781a2ca03807d166498c0d95ef8c62d9ef3404d6 (patch) | |
tree | f7da5c3e6437fb270a6cb6b5aedb3af1690fdbce /Graphics.py | |
parent | b284d36fbf479ff327aef5a7d0a174661145a4cb (diff) | |
download | Chemical-Simulator-GUI-781a2ca03807d166498c0d95ef8c62d9ef3404d6.tar.gz Chemical-Simulator-GUI-781a2ca03807d166498c0d95ef8c62d9ef3404d6.tar.bz2 Chemical-Simulator-GUI-781a2ca03807d166498c0d95ef8c62d9ef3404d6.zip |
Problem with string parameters in Unit_Operation class and Mixer simulation fixed, gitignore file updated
Diffstat (limited to 'Graphics.py')
-rw-r--r-- | Graphics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics.py b/Graphics.py index 9a8c575..0fa3306 100644 --- a/Graphics.py +++ b/Graphics.py @@ -466,7 +466,7 @@ class NodeItem(QtWidgets.QGraphicsItem): if ok and text: self.nin = int(text) self.obj.no_of_inputs = self.nin - self.obj.variables['NOI']['value'] = self.nin + self.obj.variables['NI']['value'] = self.nin elif self.obj.type == 'Splitter': text, ok = QInputDialog.getText(self.container.graphicsView, 'Splitter', 'Enter number of output:') if ok and text: |