[Libreoffice-commits] core.git: Branch 'feature/gsoc14-draw-chained-text-boxes' - svx/source

matteocam matteo.campanelli at gmail.com
Wed Aug 5 04:30:09 PDT 2015


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

New commits:
commit 9531a7d36141789d5b4d004758bf11e184f411b7
Author: matteocam <matteo.campanelli at gmail.com>
Date:   Wed Aug 5 13:29:13 2015 +0200

    Restore right MaxAutoPaperSize in SdrTextObj::ImpInitDrawOutliner
    
    Change-Id: I51d7b8487bc68e0108b9b2f4ba3c2d4470ec99a1

diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index e61088b..1c0769e 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1246,7 +1246,7 @@ void SdrTextObj::ImpInitDrawOutliner( SdrOutliner& rOutl ) const
     nStat &= ~EEControlBits(EEControlBits::STRETCHING|EEControlBits::AUTOPAGESIZE);
     rOutl.SetControlWord(nStat);
     Size aNullSize;
-    Size aMaxSize(100000,2418);
+    Size aMaxSize(100000,100000);
     rOutl.SetMinAutoPaperSize(aNullSize);
     rOutl.SetMaxAutoPaperSize(aMaxSize);
     rOutl.SetPaperSize(aMaxSize);


More information about the Libreoffice-commits mailing list