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
  • Loading branch information
jef-n committed Mar 24, 2015
1 parent 80bbed1 commit 7469d2b
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 7469d2b

Please sign in to comment.