From 46997e8e06c8199bfc52e908553336c8847a11b9 Mon Sep 17 00:00:00 2001
From: athulappadan
Date: Tue, 15 Mar 2016 15:22:57 +0530
Subject: The units of plot function is shown in multimeter
---
src/ngspiceSimulation/pythonPlotting.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'src/ngspiceSimulation/pythonPlotting.py')
diff --git a/src/ngspiceSimulation/pythonPlotting.py b/src/ngspiceSimulation/pythonPlotting.py
index dd0ca532..9d89a52e 100644
--- a/src/ngspiceSimulation/pythonPlotting.py
+++ b/src/ngspiceSimulation/pythonPlotting.py
@@ -110,7 +110,7 @@ class plotWindow(QtGui.QMainWindow):
self.plotbtn = QtGui.QPushButton("Plot")
self.plotbtn.setToolTip('Press to Plot' )
self.multimeterbtn = QtGui.QPushButton("Multimeter")
- self.multimeterbtn.setToolTip('Press to get Multimeter' )
+ self.multimeterbtn.setToolTip('Press to get multimeter' )
self.text = QtGui.QLineEdit()
self.funcLabel = QtGui.QLabel()
self.palette1 = QtGui.QPalette()
@@ -424,7 +424,7 @@ class MultimeterWidgetClass(QtGui.QWidget):
self.multimeter = QtGui.QWidget(self)
self.node_branchLabel = QtGui.QLabel("Node/Branch")
- self.rmsLabel = QtGui.QLabel("RMS Value")
+ self.rmsLabel = QtGui.QLabel("RMS Value (Volts/Amperes)")
self.nodeBranchValue = QtGui.QLabel(str(node_branch))
self.rmsValue = QtGui.QLabel(str(rmsValue))
@@ -436,7 +436,7 @@ class MultimeterWidgetClass(QtGui.QWidget):
self.layout.addWidget(self.rmsValue,1,1)
self.multimeter.setLayout(self.layout)
- self.setGeometry(loc_x,loc_y,180,100)
+ self.setGeometry(loc_x,loc_y,300,100)
self.setWindowTitle("MultiMeter")
self.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
self.show()
--
cgit