mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-18 22:00:35 +01:00
Fix add project_title on save
see https://qelectrotech.org/forum/viewtopic.php?pid=14160
This commit is contained in:
@@ -864,6 +864,12 @@ QDomDocument QETProject::toXml()
|
|||||||
QDomDocument xml_doc;
|
QDomDocument xml_doc;
|
||||||
QDomElement project_root = xml_doc.createElement("project");
|
QDomElement project_root = xml_doc.createElement("project");
|
||||||
project_root.setAttribute("version", QET::version);
|
project_root.setAttribute("version", QET::version);
|
||||||
|
if (project_title_.isEmpty())
|
||||||
|
{
|
||||||
|
// if project_title_is Empty add title from m_file_path
|
||||||
|
// is for project name in Collectie
|
||||||
|
setTitle(QFileInfo(m_file_path).completeBaseName());
|
||||||
|
}
|
||||||
project_root.setAttribute("title", project_title_);
|
project_root.setAttribute("title", project_title_);
|
||||||
xml_doc.appendChild(project_root);
|
xml_doc.appendChild(project_root);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user