The title block template editor now save its geometry and state when closing.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/branches/0.3@1650 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2012-04-09 18:56:17 +00:00
parent 1e474e4a77
commit 15a79881b0
3 changed files with 34 additions and 3 deletions

View File

@@ -1050,7 +1050,7 @@ void QETApp::openTitleBlockTemplate(const TitleBlockTemplateLocation &location,
QETTitleBlockTemplateEditor *qet_template_editor = new QETTitleBlockTemplateEditor();
qet_template_editor -> setOpenForDuplication(duplicate);
qet_template_editor -> edit(location);
qet_template_editor -> showMaximized();
qet_template_editor -> show();
}
/**
@@ -1060,7 +1060,7 @@ void QETApp::openTitleBlockTemplate(const TitleBlockTemplateLocation &location,
void QETApp::openTitleBlockTemplate(const QString &filepath) {
QETTitleBlockTemplateEditor *qet_template_editor = new QETTitleBlockTemplateEditor();
qet_template_editor -> edit(filepath);
qet_template_editor -> showMaximized();
qet_template_editor -> show();
}
/**