Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Applied fix for #4283
  • Loading branch information
timlinux committed Sep 22, 2011
1 parent 7bf7110 commit 7f3e956
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/composer/qgscomposermap.cpp
Expand Up @@ -360,6 +360,11 @@ void QgsComposerMap::paint( QPainter* painter, const QStyleOptionGraphicsItem* i

void QgsComposerMap::updateCachedImage( void )
{
//If we have a locked layer set then don't reload the map canvas.
if ( mKeepLayerSet )
{
return;
}
syncLayerSet(); //layer list may have changed
mCacheUpdated = false;
cache();
Expand Down

0 comments on commit 7f3e956

Please sign in to comment.