summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation/NgspiceWidget.py
diff options
context:
space:
mode:
authorfahim2015-05-20 12:34:33 +0530
committerfahim2015-05-20 12:34:33 +0530
commit73e306db40503eba8f80a3a3508aebe76081ea2b (patch)
tree9e2a70d78fdea4c2b7b48653a29761c728f86e6b /src/ngspiceSimulation/NgspiceWidget.py
parent7e471c072b18c3969ed5573dbe24923c2f678b5f (diff)
downloadeSim-73e306db40503eba8f80a3a3508aebe76081ea2b.tar.gz
eSim-73e306db40503eba8f80a3a3508aebe76081ea2b.tar.bz2
eSim-73e306db40503eba8f80a3a3508aebe76081ea2b.zip
Subject: Added hold flag for xterm window to capture error
Description: Added hold flag for xterm window to capture error
Diffstat (limited to 'src/ngspiceSimulation/NgspiceWidget.py')
-rw-r--r--src/ngspiceSimulation/NgspiceWidget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py
index 51e41144..a70a9b48 100644
--- a/src/ngspiceSimulation/NgspiceWidget.py
+++ b/src/ngspiceSimulation/NgspiceWidget.py
@@ -15,7 +15,7 @@ class NgspiceWidget(QtGui.QWidget):
self.layout.addWidget(self.terminal)
#Creating argument for process
- self.args = ['-into', str(self.terminal.winId()),'-e', self.command]
+ self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command]
self.process.start('xterm', self.args)