summaryrefslogtreecommitdiff
path: root/src/ngspiceSimulation/NgspiceWidget.py
diff options
context:
space:
mode:
authorfahim2015-07-01 14:31:14 +0530
committerfahim2015-07-01 14:31:14 +0530
commit24fe576e3cdf1e22293ba86c9436cdb6942d163a (patch)
treeba01ec8fc4b472784de1b4602c2c960b66e472b5 /src/ngspiceSimulation/NgspiceWidget.py
parent298713c347911a423acfb9558aa0356061655ea5 (diff)
downloadeSim-24fe576e3cdf1e22293ba86c9436cdb6942d163a.tar.gz
eSim-24fe576e3cdf1e22293ba86c9436cdb6942d163a.tar.bz2
eSim-24fe576e3cdf1e22293ba86c9436cdb6942d163a.zip
Subject: Remove geometry option from xterm window
Description: Remove geometry option from xterm window as it was not scrolling after embeding into PyQt widget
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 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':