diff options
author | Tanay Mathur | 2015-06-25 16:53:08 +0530 |
---|---|---|
committer | Tanay Mathur | 2015-06-25 16:53:08 +0530 |
commit | be20e206432d2fd91b0d20df4f8b611ea238fa7f (patch) | |
tree | dbcb027c32c2a441c4d8c053df6acfc83e382929 /src/ngspiceSimulation/NgspiceWidget.py | |
parent | f7cf0e9a67627ed6ce73892a75445ba84e6b9b21 (diff) | |
download | eSim-be20e206432d2fd91b0d20df4f8b611ea238fa7f.tar.gz eSim-be20e206432d2fd91b0d20df4f8b611ea238fa7f.tar.bz2 eSim-be20e206432d2fd91b0d20df4f8b611ea238fa7f.zip |
GUI changes for Dock Area, added FOSSEE logo
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 f2ad973f..2dcb4f89 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 = ['-into', str(self.terminal.winId()),'-hold','-e', self.command] + self.args = ['-geometry','200x200','-into', str(self.terminal.winId()),'-hold','-e', self.command] self.process.start('xterm', self.args) elif platform.system() == 'Windows': |