From 7806890509fe8f889f15471fc1c970e58ec9ab6b Mon Sep 17 00:00:00 2001 From: MisterMLiL Date: Tue, 3 Oct 2023 16:03:38 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83,=20=D0=92?= =?UTF-8?q?=D1=81=D0=B5=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BA=D0=B8=20=D0=B7?= =?UTF-8?q?=D0=B0=D0=B1=D0=BB=D0=BE=D0=BA=D0=B8=D1=80=D0=BE=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- statapp/main_window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/statapp/main_window.py b/statapp/main_window.py index 10e738f..4cd5f55 100644 --- a/statapp/main_window.py +++ b/statapp/main_window.py @@ -114,7 +114,7 @@ class MainWindow(QMainWindow): y = np.random.normal(gw.mat, gw.deviation, size=(gw.count, 1)) self.model.updateAllData(y.round(2)) self.isDataChanged = True - self.generateXaction_action.setEnabled(True) + self.ui.generateXaction.setEnabled(True) @Slot() def on_generateXaction_triggered(self): @@ -128,8 +128,8 @@ class MainWindow(QMainWindow): # dd = dd.reshape(len(dd), 1) data = np.concatenate((data, x_arr), axis=1) self.model.updateAllData(data) - self.varianceAnalysisAction_action.setEnabled(True) - self.correlationAnalisisAction_action.setEnabled(True) + self.ui.varianceAnalysisAction.setEnabled(True) + self.ui.correlationAnalisisAction.setEnabled(True) self.isDataChanged = True @Slot()