summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation
diff options
context:
space:
mode:
authorFahim2016-02-17 16:52:17 +0530
committerFahim2016-02-17 16:52:17 +0530
commit8a6f29decb7793e678aa8492f4f8d899087f2f68 (patch)
treedfb5dc571fea7c30cd75fd101f83198e73aa914a /src/ngspiceSimulation
parent1aaa791497cd672a547351936422246efdb758fd (diff)
downloadeSim-8a6f29decb7793e678aa8492f4f8d899087f2f68.tar.gz
eSim-8a6f29decb7793e678aa8492f4f8d899087f2f68.tar.bz2
eSim-8a6f29decb7793e678aa8492f4f8d899087f2f68.zip
Subject: Modified NgspiceSimulation window
Description: Modified NgspiceSimulation window outside Dock area
Diffstat (limited to 'src/ngspiceSimulation')
-rw-r--r--src/ngspiceSimulation/NgspiceWidget.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py
index 4a8c2aba..402c20e3 100644
--- a/src/ngspiceSimulation/NgspiceWidget.py
+++ b/src/ngspiceSimulation/NgspiceWidget.py
@@ -19,7 +19,8 @@ class NgspiceWidget(QtGui.QWidget):
if platform.system() == 'Linux':
self.command = "cd "+projPath+";ngspice "+command
#Creating argument for process
- self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command]
+ #self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command]
+ self.args = ['-hold','-e', self.command]
self.process.start('xterm', self.args)
self.obj_appconfig.process_obj.append(self.process)