svx/source/svdraw/svdotextdecomposition.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 1786bcb6285c056aa74fcd3b552ada7d300496ec
Author: matteocam <matteo.campane...@gmail.com>
Date:   Mon Jun 22 16:10:59 2015 -0400

    Fixed Underflow condition: should be not(overflow)
    
    Change-Id: I58c6f2c0e3518ec200e3653f13804373580b4d25

diff --git a/svx/source/svdraw/svdotextdecomposition.cxx 
b/svx/source/svdraw/svdotextdecomposition.cxx
index 37c2384..6b00aacc 100644
--- a/svx/source/svdraw/svdotextdecomposition.cxx
+++ b/svx/source/svdraw/svdotextdecomposition.cxx
@@ -1669,7 +1669,7 @@ void SdrTextObj::impDecomposeChainedTextPrimitive(
 
     /* Begin underflow handling */
 
-    bool bIsPageUnderflow = rOutliner.IsPageOverflow() && !IsInEditMode();
+    bool bIsPageUnderflow = !rOutliner.IsPageOverflow() && !IsInEditMode();
     if (bIsPageUnderflow) {
 
         SdrTextObj *pNextLink = GetNextLinkInChain();
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to