Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Make modifications through the style dock much faster
Before any change in the style dock would invalidate the cache
for ALL map layers, resulting in every layer being redrawn.

Now only the affected layer is redrawn and all others just use
the cached render.
  • Loading branch information
nyalldawson committed Oct 6, 2016
1 parent 9a9df32 commit c6436f8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/qgslayerstylingwidget.cpp
Expand Up @@ -268,8 +268,7 @@ void QgsLayerStylingWidget::apply()
{
emit styleChanged( mCurrentLayer );
QgsProject::instance()->setDirty( true );
mMapCanvas->clearCache();
mMapCanvas->refresh();
mCurrentLayer->triggerRepaint();
}
connect( mCurrentLayer, SIGNAL( styleChanged() ), this, SLOT( updateCurrentWidgetLayer() ) );
}
Expand Down

1 comment on commit c6436f8

@NathanW2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks loads for this fix. Bit annoyed that I didn't see it myself before 2.16.

Please sign in to comment.