Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dxf export: fix data defined outline color of simple markers
(cherry picked from commit 7469d2b)
  • Loading branch information
jef-n committed Mar 24, 2015
1 parent ae954e8 commit f0caf17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgsmarkersymbollayerv2.cpp
Expand Up @@ -884,7 +884,7 @@ bool QgsSimpleMarkerSymbolLayerV2::writeDxf( QgsDxfExport& e, double mmMapUnitSc
bc = QgsSymbolLayerV2Utils::decodeColor( colorExpression->evaluate( *f ).toString() );
}

QgsExpression* outlinecolorExpression = expression( "outline_color" );
QgsExpression* outlinecolorExpression = expression( "color_border" );
if ( outlinecolorExpression )
{
pc = QgsSymbolLayerV2Utils::decodeColor( outlinecolorExpression->evaluate( *f ).toString() );
Expand Down

0 comments on commit f0caf17

Please sign in to comment.