Skip to content

Commit 7f3e956

Browse files
committedSep 22, 2011
Applied fix for #4283
1 parent 7bf7110 commit 7f3e956

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/core/composer/qgscomposermap.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,11 @@ void QgsComposerMap::paint( QPainter* painter, const QStyleOptionGraphicsItem* i
360360

361361
void QgsComposerMap::updateCachedImage( void )
362362
{
363+
//If we have a locked layer set then don't reload the map canvas.
364+
if ( mKeepLayerSet )
365+
{
366+
return;
367+
}
363368
syncLayerSet(); //layer list may have changed
364369
mCacheUpdated = false;
365370
cache();

0 commit comments

Comments
 (0)
Please sign in to comment.