xmloff/source/draw/sdxmlexp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 89f6c41abffd2885b7083ab0ef94da89c8b2c770 Author: Samuel Mehrbrodt <[email protected]> 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 <[email protected]> Reviewed-by: Katarina Behrens <[email protected]> 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; } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
