diff --git a/ChangeLog.txt b/ChangeLog.txt index 261d98df3..85431bd70 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,7 @@ - New warnings. Warn a user about incorrect cut curve segment length. - Fix finding point of intersection curve and axis. Case when the axis's point lies on the curve. - Fix visualization for tool point of intersection line and axis. Case when the axis's point lies on the line. +- Table of variables is available in Details mode. # Valentina 0.7.49 July 1, 2021 - Fix crash. diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index 065ac4fa1..f3c687682 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -3839,7 +3839,7 @@ void MainWindow::SetEnableWidgets(bool enable) ui->actionDraw->setEnabled(enable); ui->actionDetails->setEnabled(enable); ui->actionLayout->setEnabled(enable); - ui->actionTable->setEnabled(enable && drawStage); + ui->actionTable->setEnabled(enable && designStage); ui->actionExportIncrementsToCSV->setEnabled(enable); ui->actionExportFinalMeasurementsToCSV->setEnabled(enable); ui->actionFinalMeasurements->setEnabled(enable);