diff --git a/common/tool/common_tools.cpp b/common/tool/common_tools.cpp index 029437fa09..bb38f7e948 100644 --- a/common/tool/common_tools.cpp +++ b/common/tool/common_tools.cpp @@ -227,14 +227,7 @@ int COMMON_TOOLS::ZoomFitScreen( const TOOL_EVENT& aEvent ) VECTOR2D screenSize = view->ToWorld( galCanvas->GetClientSize(), false ); if( bBox.GetWidth() == 0 || bBox.GetHeight() == 0 ) - { bBox = defaultBox; - } - else if( defaultBox.GetWidth() > 0 && defaultBox.GetHeight() > 0 ) - { - // Ensure worksheet is included in bounding box - bBox.Merge( defaultBox ); - } VECTOR2D vsize = bBox.GetSize(); double scale = view->GetScale() / std::max( fabs( vsize.x / screenSize.x ),