Table of variables is available in Details mode.

(cherry picked from commit 3df3dc58c3)
This commit is contained in:
Roman Telezhynskyi 2021-07-27 10:07:39 +03:00
parent cfac8e8355
commit bbc6f20237
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
- New warnings. Warn a user about incorrect cut curve segment length. - 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 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. - 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 # Valentina 0.7.49 July 1, 2021
- Fix crash. - Fix crash.

View File

@ -3948,7 +3948,7 @@ void MainWindow::SetEnableWidgets(bool enable)
ui->actionDraw->setEnabled(enable); ui->actionDraw->setEnabled(enable);
ui->actionDetails->setEnabled(enable); ui->actionDetails->setEnabled(enable);
ui->actionLayout->setEnabled(enable); ui->actionLayout->setEnabled(enable);
ui->actionTable->setEnabled(enable && drawStage); ui->actionTable->setEnabled(enable && designStage);
ui->actionExportIncrementsToCSV->setEnabled(enable); ui->actionExportIncrementsToCSV->setEnabled(enable);
ui->actionExportFinalMeasurementsToCSV->setEnabled(enable); ui->actionExportFinalMeasurementsToCSV->setEnabled(enable);
ui->actionFinalMeasurements->setEnabled(enable); ui->actionFinalMeasurements->setEnabled(enable);