diff --git a/ChangeLog.txt b/ChangeLog.txt index ff042a8ac..c56e183b8 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -4,6 +4,7 @@ - Fix visualization for tool Point of intersection line and axis. - Improved curve segment warnings. - Tape app. Add action Add separator to menu. +- Tape app. Fix crash after switching language. # Valentina 0.7.51 April 18, 2022 - Z value change for a layout piece. diff --git a/src/app/tape/tmainwindow.cpp b/src/app/tape/tmainwindow.cpp index e98e0231e..725244838 100644 --- a/src/app/tape/tmainwindow.cpp +++ b/src/app/tape/tmainwindow.cpp @@ -415,6 +415,9 @@ void TMainWindow::FileNew() DialogSetupMultisize setup(mUnit, this); if (setup.exec() == QDialog::Rejected) { + mUnit = Unit::Cm; + pUnit = mUnit; + mType = MeasurementsType::Individual; return; }