From 19a9874b1fbf6d4edd1a9c052096187b6068119c Mon Sep 17 00:00:00 2001 From: fahim Date: Fri, 17 Apr 2015 16:57:49 +0530 Subject: Subject : Modified in Analysis Inserter function Description: Modified Analysis Inserter function --- src/kicadtoNgspice/Analysis.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/kicadtoNgspice/Analysis.py') diff --git a/src/kicadtoNgspice/Analysis.py b/src/kicadtoNgspice/Analysis.py index 1ad045dd..2dcb43c3 100644 --- a/src/kicadtoNgspice/Analysis.py +++ b/src/kicadtoNgspice/Analysis.py @@ -133,15 +133,15 @@ class Analysis(QtGui.QWidget): self.acgrid.addWidget(self.no_of_points,4,0) self.count=0 - self.ac_entry_var[self.count] = QtGui.QLineEdit() + self.ac_entry_var[self.count] = QtGui.QLineEdit()#start self.acgrid.addWidget(self.ac_entry_var[self.count],2,1) self.ac_entry_var[self.count].setMaximumWidth(150) self.count= self.count+1 - self.ac_entry_var[self.count] = QtGui.QLineEdit() + self.ac_entry_var[self.count] = QtGui.QLineEdit()#stop self.acgrid.addWidget(self.ac_entry_var[self.count],3,1) self.ac_entry_var[self.count].setMaximumWidth(150) self.count= self.count+1 - self.ac_entry_var[self.count] = QtGui.QLineEdit() + self.ac_entry_var[self.count] = QtGui.QLineEdit()#no of pts self.acgrid.addWidget(self.ac_entry_var[self.count],4,1) self.ac_entry_var[self.count].setMaximumWidth(150) @@ -221,19 +221,19 @@ class Analysis(QtGui.QWidget): self.dcgrid.addWidget(self.stop,4,0) self.count=0 - self.dc_entry_var[self.count] = QtGui.QLineEdit() + self.dc_entry_var[self.count] = QtGui.QLineEdit()#source self.dcgrid.addWidget(self.dc_entry_var[self.count],1,1) self.dc_entry_var[self.count].setMaximumWidth(150) self.count= self.count+1 - self.dc_entry_var[self.count] = QtGui.QLineEdit() + self.dc_entry_var[self.count] = QtGui.QLineEdit()#start self.dcgrid.addWidget(self.dc_entry_var[self.count],2,1) self.dc_entry_var[self.count].setMaximumWidth(150) self.count= self.count+1 - self.dc_entry_var[self.count] = QtGui.QLineEdit() + self.dc_entry_var[self.count] = QtGui.QLineEdit()#increment self.dcgrid.addWidget(self.dc_entry_var[self.count],3,1) self.dc_entry_var[self.count].setMaximumWidth(150) self.count= self.count+1 - self.dc_entry_var[self.count] = QtGui.QLineEdit() + self.dc_entry_var[self.count] = QtGui.QLineEdit()#stop self.dcgrid.addWidget(self.dc_entry_var[self.count],4,1) self.dc_entry_var[self.count].setMaximumWidth(150) -- cgit