From 5ba5ff4aff2dd04be970a603c1503b566fd6eed1 Mon Sep 17 00:00:00 2001 From: Andrzej Hunt Date: Tue, 30 Sep 2014 20:43:43 +0100 Subject: Fix wrong conditional for zoom-saneness-check. Change-Id: I54cb8ffc71c162e75675d306b903ef40ad05092f --- sc/source/ui/view/viewdata.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/ui/view/viewdata.cxx') diff --git a/sc/source/ui/view/viewdata.cxx b/sc/source/ui/view/viewdata.cxx index 683bb6cd8c25..d46c7f455017 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 ); -- cgit v1.2.3