sc/source/ui/view/viewdata.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 5ba5ff4aff2dd04be970a603c1503b566fd6eed1 Author: Andrzej Hunt <[email protected]> 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 ); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
