sw/source/core/edit/edfcol.cxx |    9 +++++++++
 1 file changed, 9 insertions(+)

New commits:
commit f9aa57181be0cd02d07fb463410b5c1dde11ea1e
Author: Szymon Kłos <szymon.k...@collabora.com>
Date:   Tue Jun 13 10:22:58 2017 +0200

    tdf#108494 incorrect Watermark position
    
    Change-Id: Iec1dba66604af008ad8b6b1c20cd508048144463
    Reviewed-on: https://gerrit.libreoffice.org/38722
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Andras Timar <andras.ti...@collabora.com>

diff --git a/sw/source/core/edit/edfcol.cxx b/sw/source/core/edit/edfcol.cxx
index 94c066e98c2f..b44cdf43a115 100644
--- a/sw/source/core/edit/edfcol.cxx
+++ b/sw/source/core/edit/edfcol.cxx
@@ -369,6 +369,10 @@ void SwEditShell::SetWatermark(const SfxWatermarkItem& 
rWatermark)
         if (!bHeaderIsOn)
             xPageStyle->setPropertyValue(UNO_NAME_HEADER_IS_ON, 
uno::makeAny(true));
 
+        // backup header height
+        sal_Int32 nOldValue;
+        xPageStyle->getPropertyValue(UNO_NAME_HEADER_HEIGHT) >>= nOldValue;
+
         // If the header already contains a document header field, no need to 
do anything.
         uno::Reference<text::XText> xHeaderText;
         xPageStyle->getPropertyValue(UNO_NAME_HEADER_TEXT) >>= xHeaderText;
@@ -519,6 +523,11 @@ void SwEditShell::SetWatermark(const SfxWatermarkItem& 
rWatermark)
             xNamed->setName(sWatermark);
             xLockable->removeActionLock();
         }
+
+        // tdf#108494 the header height was switched to height of a watermark
+        // and shape was moved to the lower part of a page
+        xPageStyle->setPropertyValue(UNO_NAME_HEADER_HEIGHT, 
uno::makeAny((sal_Int32)11));
+        xPageStyle->setPropertyValue(UNO_NAME_HEADER_HEIGHT, 
uno::makeAny(nOldValue));
     }
 }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to