diff options
author | Mert Tumer <mert.tumer@collabora.com> | 2020-11-27 16:56:53 +0300 |
---|---|---|
committer | Mert Tumer <mert.tumer@collabora.com> | 2020-11-29 17:08:13 +0100 |
commit | 201edc324fb9c4922ab4aa3c7233676ed43a8e03 (patch) | |
tree | 1ff5a926784855e90c3a6e1ef809f923d987e91d /desktop/source | |
parent | 218b61fd1b2c7e614a877bb38f92affc6915c3fd (diff) |
Fix unmodified pdf does forced-save
This is a problem when dealing with the large
pdfs which take long amount of time to save.
Adding or removing annotations do change the state of
IsModified()
Change-Id: I872cb3aec5188986cc13c6659e1bb741a6870409
Signed-off-by: Mert Tumer <mert.tumer@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106778
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
(cherry picked from commit 455cd8fe00d1c756da1bb50a50bac68a1ad645ef)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106741
Tested-by: Jenkins
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 8395e81057b9..f53fd96eb609 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3808,7 +3808,7 @@ static void doc_postUnoCommand(LibreOfficeKitDocument* pThis, const char* pComma { // Check if saving a PDF file OUString aMimeType = lcl_getCurrentDocumentMimeType(pDocument); - if (aMimeType == "application/pdf") + if (pDocSh->IsModified() && aMimeType == "application/pdf") { // If we have a PDF file (for saving annotations for example), we need // to run save-as to the same file as the opened document. Plain save |