diff options
author | xoher | 2015-07-28 02:49:57 +0530 |
---|---|---|
committer | xoher | 2015-07-28 02:49:57 +0530 |
commit | d9482c3c0bcb33162aeef55a3a2b79e606c02aa3 (patch) | |
tree | bc6e791f0b55d09002146afbe0bee1700a25f8f1 /src/ngspiceSimulation/NgspiceWidget.py | |
parent | 034bc2734d017f3bdc94a309102b3141cb623ce9 (diff) | |
download | eSim-d9482c3c0bcb33162aeef55a3a2b79e606c02aa3.tar.gz eSim-d9482c3c0bcb33162aeef55a3a2b79e606c02aa3.tar.bz2 eSim-d9482c3c0bcb33162aeef55a3a2b79e606c02aa3.zip |
Kicad to NgSpice conversion opens in dock area
Diffstat (limited to 'src/ngspiceSimulation/NgspiceWidget.py')
-rw-r--r-- | src/ngspiceSimulation/NgspiceWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ngspiceSimulation/NgspiceWidget.py b/src/ngspiceSimulation/NgspiceWidget.py index 2dcb4f89..f2ad973f 100644 --- a/src/ngspiceSimulation/NgspiceWidget.py +++ b/src/ngspiceSimulation/NgspiceWidget.py @@ -18,7 +18,7 @@ class NgspiceWidget(QtGui.QWidget): if platform.system() == 'Linux': self.command = "cd "+projPath+";ngspice "+command #Creating argument for process - self.args = ['-geometry','200x200','-into', str(self.terminal.winId()),'-hold','-e', self.command] + self.args = ['-into', str(self.terminal.winId()),'-hold','-e', self.command] self.process.start('xterm', self.args) elif platform.system() == 'Windows': |