Fix for bug #1286'

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9278 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2008-09-07 11:42:08 +00:00
parent af896f6668
commit 13a3fc56df

View File

@ -399,7 +399,7 @@ void QgsComposer::zoomFull( void )
{
if ( mView )
{
mView->fitInView( 0, 0, mComposition->paperWidth(), mComposition->paperHeight(), Qt::KeepAspectRatio );
mView->fitInView( 0, 0, mComposition->paperWidth() + 1, mComposition->paperHeight() + 1, Qt::KeepAspectRatio );
}
}