From 1f624ec69b67531a59d5687f52abdfae06e64745 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Mon, 25 Jan 2016 11:04:42 +0200 Subject: [PATCH] Enable actionSave even file was not saved before. --HG-- branch : feature --- src/app/valentina/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index e79809838..a7f3f7165 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -2524,7 +2524,7 @@ void MainWindow::SetEnableWidgets(bool enable) { comboBoxDraws->setEnabled(enable); ui->actionOptionDraw->setEnabled(enable); - if (enable && not curFile.isEmpty() && not patternReadOnly) + if (enable && not patternReadOnly) { ui->actionSave->setEnabled(enable); }