[Libreoffice-commits] core.git: Branch 'libreoffice-5-4' - xmloff/source
Samuel Mehrbrodt
Samuel.Mehrbrodt at cib.de
Fri Jul 14 14:15:49 UTC 2017
xmloff/source/draw/sdxmlexp.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 89f6c41abffd2885b7083ab0ef94da89c8b2c770
Author: Samuel Mehrbrodt <Samuel.Mehrbrodt at cib.de>
Date: Fri Jul 14 10:03:58 2017 +0200
tdf#108824 Save "Mouse pointer visible" property
Change-Id: I6c5c9d885df7fa4032724861361957cb6981091c
Reviewed-on: https://gerrit.libreoffice.org/39942
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens at cib.de>
diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx
index ba792d13f128..8b670eec9aa6 100644
--- a/xmloff/source/draw/sdxmlexp.cxx
+++ b/xmloff/source/draw/sdxmlexp.cxx
@@ -1986,9 +1986,9 @@ void SdXMLExport::exportPresentationSettings()
}
xPresProps->getPropertyValue("IsMouseVisible") >>= bTemp;
- if( !bTemp )
+ if( bTemp )
{
- AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_FALSE );
+ AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_TRUE );
bHasAttr = true;
}
More information about the Libreoffice-commits
mailing list