xmloff/source/draw/sdxmlexp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit a1afdfa15ec0410a735fd7e969219bd6cc1f33dd Author: Samuel Mehrbrodt <[email protected]> Date: Tue Jul 18 17:48:38 2017 +0200 Revert "tdf#108824 Save "Mouse pointer visible" property" See tdf#108824 comment 4 for reasoning. This reverts commit 89f6c41abffd2885b7083ab0ef94da89c8b2c770. Change-Id: I3e9fcdd2c9cf6c3b0a0454a2a85799e4274e0bdd Reviewed-on: https://gerrit.libreoffice.org/40145 Tested-by: Jenkins <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/xmloff/source/draw/sdxmlexp.cxx b/xmloff/source/draw/sdxmlexp.cxx index 8b670eec9aa6..ba792d13f128 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_TRUE ); + AddAttribute(XML_NAMESPACE_PRESENTATION, XML_MOUSE_VISIBLE, XML_FALSE ); bHasAttr = true; }
_______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
