Skip to content

Commit

Permalink
Applied fix for #4283
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux authored and mach0 committed Nov 13, 2011
1 parent 72ecfad commit 0a02972
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/composer/qgscomposermap.cpp
Expand Up @@ -357,6 +357,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 0a02972

Please sign in to comment.