Fixed little bug when we try to save image

--HG--
branch : feature
This commit is contained in:
Valentina Zhuravska 2016-03-27 14:51:36 +03:00
parent e838ae811e
commit b22c5b656a

View File

@ -703,6 +703,8 @@ void DialogPatternProperties::SaveImage()
const QString extension = "." + doc->GetImageExtension();
QString filter = tr("Images (*") + extension + ")";
QString filename = QFileDialog::getSaveFileName(this, tr("Save File"), tr("untitled"), filter, &filter);
if (not filename.isEmpty())
{
if (not filename.endsWith(extension.toUpper()))
{
filename.append(extension);
@ -713,6 +715,7 @@ void DialogPatternProperties::SaveImage()
file.write(ba);
file.close();
}
}
}
//---------------------------------------------------------------------------------------------------------------------