diff options
author | brenda-br | 2023-03-04 11:44:52 +0530 |
---|---|---|
committer | brenda-br | 2023-03-04 11:45:31 +0530 |
commit | 78b24f6e3fc801bd20473bdeaaf868d1c727bbd2 (patch) | |
tree | 9f6f8f744889a5e02393d3b21bfddb44cd164ff7 | |
parent | f92b631fc873a48fb8fa9950ace719003e7bc145 (diff) | |
download | Chemical-Simulator-GUI-78b24f6e3fc801bd20473bdeaaf868d1c727bbd2.tar.gz Chemical-Simulator-GUI-78b24f6e3fc801bd20473bdeaaf868d1c727bbd2.tar.bz2 Chemical-Simulator-GUI-78b24f6e3fc801bd20473bdeaaf868d1c727bbd2.zip |
Removing Undo and Redo #2
-rw-r--r-- | src/main/python/mainApp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/python/mainApp.py b/src/main/python/mainApp.py index a2869b0..bd6638c 100644 --- a/src/main/python/mainApp.py +++ b/src/main/python/mainApp.py @@ -237,7 +237,7 @@ class MainApp(QMainWindow,ui): ''' def new(self): self.setWindowTitle('Untitled - Chemical Simulator GUI') - self.undo_redo_helper() + #self.undo_redo_helper() self.comp = ComponentSelector(self) self.textBrowser.append("<span>[" + str(self.current_time()) + "] <b>New</b> flowsheet is created ... </span>") dock_widget_lst.clear() |