Fixed dialogs priority and removed reduntant variables

This commit is contained in:
Dmitriy Shishkov 2023-10-31 14:15:04 +03:00
parent c64d32625b
commit 86e91b733f
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
3 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ from PyQt5 import QtWidgets
matplotlib.use("Qt5Agg")
class GraphWidget(QtWidgets.QWidget):
class GraphWidget(QtWidgets.QDialog):
def __init__(self, x, y, labels, mult_plots=False):
super().__init__()
graph = Graph(x, y, labels, mult_subplots=mult_plots)

View File

@ -10,7 +10,7 @@ from . import PlotterDialog
def main():
app = QApplication(sys.argv)
variables = [chr(ord("a") + i) for i in range(10)]
variables = [chr(ord("a") + i) for i in range(4)]
dlg = PlotterDialog(
variable_values={key: np.sort(np.random.random(10)) * 10 for key in variables},

View File

@ -215,7 +215,9 @@ class PlotterDialog(QDialog):
self.graph = GraphWidget(xs, ys, labels, mult_plots=mult_subplots)
self.graph.show()
self.graph.setWindowTitle("Графики")
self.graph.exec()
def reset(self):
dlg = QMessageBox(