Skip to content

Commit

Permalink
Fix for composer map crash when doing fast zooms with mouse wheel
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11186 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Jul 27, 2009
1 parent 1e53f58 commit 9cb3b3f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/composer/qgscomposermap.cpp
Expand Up @@ -307,6 +307,11 @@ void QgsComposerMap::moveContent( double dx, double dy )

void QgsComposerMap::zoomContent( int delta, double x, double y )
{
if(mDrawing)
{
return;
}

QSettings settings;

//read zoom mode
Expand Down

0 comments on commit 9cb3b3f

Please sign in to comment.