We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb193d9 commit fdd8199Copy full SHA for fdd8199
src/core/symbology-ng/qgslinesymbollayerv2.cpp
@@ -710,6 +710,10 @@ QSet<QString> QgsMarkerLineSymbolLayerV2::usedAttributes() const
710
{
711
attributes.insert( *it );
712
}
713
+ if ( mMarker )
714
+ {
715
+ attributes.unite( mMarker->usedAttributes() );
716
+ }
717
return attributes;
718
719
@@ -791,7 +795,7 @@ void QgsMarkerLineSymbolLayerV2::startRender( QgsSymbolV2RenderContext& context
791
795
hints |= QgsSymbolV2::DataDefinedSizeScale;
792
796
mMarker->setRenderHints( hints );
793
797
794
- mMarker->startRender( context.renderContext() );
798
+ mMarker->startRender( context.renderContext(), context.layer() );
799
800
//prepare expressions for data defined properties
801
prepareExpressions( context.layer() );
0 commit comments