Fixed broken saving pattern description.

(grafted from 5aa7bf5c81c9c525ada2c7875de3a702379fb5e3)

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-02-29 14:46:24 +02:00
parent 738b7c499a
commit 9bec10f580
2 changed files with 4 additions and 1 deletions

View File

@ -11,6 +11,9 @@
- [#385] Add 'Open Recent' option in Tape.exe, 'File' dropdown menu.
# 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.
- Fixed bug disabling tool True darts.
- Fixed wrong calculation tool True darts.

View File

@ -468,7 +468,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());
}