Skip to content
Snippets Groups Projects
Commit b129a0d1 authored by Ivo's avatar Ivo
Browse files

FIX: changed 'dot plot' btn text to 'scatter plot'.

parent 5a7c9b7a
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ class Window(QtWidgets.QDialog):
self.button4.clicked.connect(self.getTeX)
self.addButton = QtWidgets.QPushButton('Add to LaTeX report')
self.addButton.clicked.connect(self.emitTeXInfo)
self.typeButton = QtWidgets.QPushButton('Dot plot')
self.typeButton = QtWidgets.QPushButton('Scatter plot')
self.plotType = 0
self.typeButton.clicked.connect(self.changeType)
......@@ -142,7 +142,7 @@ class Window(QtWidgets.QDialog):
if self.plotType:
self.typeButton.setText('Line plot')
else:
self.typeButton.setText('Dot plot')
self.typeButton.setText('Scatter plot')
self.plot()
def emitTeXInfo(self):
......@@ -432,4 +432,4 @@ if __name__ == '__main__':
main = Window(1)
main.show()
sys.exit(app.exec_())
\ No newline at end of file
sys.exit(app.exec_())
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment