From 1b771037c28ae02a0ab9c40008e812e20353a542 Mon Sep 17 00:00:00 2001 From: scorpio810 Date: Mon, 10 Jun 2019 11:34:57 +0000 Subject: [PATCH] Bug fix : when user load a project which contains summary pages, project was marked modified (summary was created on the fly and moved on second position by default), now the project is no longer marked as amended git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5910 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/projectview.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sources/projectview.cpp b/sources/projectview.cpp index b2f19128e..dc9b91900 100644 --- a/sources/projectview.cpp +++ b/sources/projectview.cpp @@ -879,6 +879,7 @@ void ProjectView::loadDiagrams() if (m_project -> getFolioSheetsQuantity()) { for (int i = 0; i < m_project->getFolioSheetsQuantity(); i++) m_tab -> tabBar() -> moveTab(diagram_views().size()-1, + 1); + m_project->setModified(false); } }