diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2017-07-18 17:48:38 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-07-20 22:03:35 +0200 |
commit | a1afdfa15ec0410a735fd7e969219bd6cc1f33dd (patch) | |
tree | a54b3a8905476379b21bb0ecfb38bda07a53bf32 | |
parent | 6ad30e75c0bc88755f4f6bf4b32adfa5faf3e1ec (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | xmloff/source/draw/sdxmlexp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |