[Libreoffice-commits] core.git: Branch 'private/ajrhunt/c4' - sc/source

Andrzej Hunt andrzej.hunt at collabora.com
Tue Sep 30 12:44:22 PDT 2014


 sc/source/ui/view/viewdata.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5ba5ff4aff2dd04be970a603c1503b566fd6eed1
Author: Andrzej Hunt <andrzej.hunt at collabora.com>
Date:   Tue Sep 30 20:43:43 2014 +0100

    Fix wrong conditional for zoom-saneness-check.
    
    Change-Id: I54cb8ffc71c162e75675d306b903ef40ad05092f

diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx
index 683bb6c..d46c7f4 100644
--- a/sc/source/ui/view/viewdata.cxx
+++ b/sc/source/ui/view/viewdata.cxx
@@ -629,7 +629,7 @@ void ScViewData::SetZoom( const Fraction& rNewX, const Fraction& rNewY,
 
     // We probably don't want these limits for tiled rendering, hence
     // we make them optional.
-    if ( !bIgnoreLimits )
+    if ( bIgnoreLimits )
     {
         const Fraction aFrac20( 1, 5 );
         const Fraction aFrac400( 4, 1 );


More information about the Libreoffice-commits mailing list