From b2f3affb34e6fe8f5c5fc06f6aa214474406f667 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Tue, 7 Jun 2016 09:28:59 +0300 Subject: [PATCH] Fixed issue #468. Tape 'Save As' should save a file without read only state. --HG-- branch : release --- ChangeLog.txt | 1 + src/app/tape/tmainwindow.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog.txt b/ChangeLog.txt index 7819c4515..b9bbbf091 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -5,6 +5,7 @@ - [#491] Valentina doesn't update fractional separator. - [#492] Valentina crashes when add an increment. - [#493] Error in seam allowance drawing. +- [#468] Error - Tape 'Save As' should set 'Read Only' to false. # Version 0.4.4 April 12, 2016 - Updated measurement templates with all measurements. Added new template Aldrich/Women measurements. diff --git a/src/app/tape/tmainwindow.cpp b/src/app/tape/tmainwindow.cpp index c02ec2b10..190fe5fd4 100644 --- a/src/app/tape/tmainwindow.cpp +++ b/src/app/tape/tmainwindow.cpp @@ -646,6 +646,7 @@ void TMainWindow::FileSaveAs() } } + ReadOnly(false); QString error; bool result = SaveMeasurements(fileName, error); if (result == false)