From 24fe576e3cdf1e22293ba86c9436cdb6942d163a Mon Sep 17 00:00:00 2001 From: fahim Date: Wed, 1 Jul 2015 14:31:14 +0530 Subject: Subject: Remove geometry option from xterm window Description: Remove geometry option from xterm window as it was not scrolling after embeding into PyQt widget --- src/ngspiceSimulation/NgspiceWidget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ngspiceSimulation/NgspiceWidget.py') 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': -- cgit