Fixed broken saving pattern description.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2016-02-29 14:26:50 +02:00
parent c8e940d11c
commit 944edb8735
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
# Version 0.4.3
- Fixed broken saving pattern description.
- Fixed UI bug. Release a dialog size for deploying a formula field.
- Fixed broken formula when for system locale thousand separator is a space.
- Using QGraphicsScene instead of VMainGraphicsScene caused a crash.

View file

@ -437,7 +437,7 @@ void DialogPatternProperties::CheckApplyOk()
void DialogPatternProperties::SaveDescription()
{
doc->SetNotes(ui->plainTextEditTechNotes->document()->toPlainText());
doc->SetDescription(ui->plainTextEditTechNotes->document()->toPlainText());
doc->SetDescription(ui->plainTextEditDescription->document()->toPlainText());
doc->SetAuthor(ui->lineEditAuthor->text());
}