Skip to content

Commit

Permalink
[25d] Properly initialize shadow color
Browse files Browse the repository at this point in the history
Fix #14135
  • Loading branch information
m-kuhn committed Jan 21, 2016
1 parent 7f4cd84 commit 4d4ab63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/symbology-ng/qgs25drenderer.cpp
Expand Up @@ -96,7 +96,7 @@ Qgs25DRenderer::Qgs25DRenderer()
wallLayer()->setDataDefinedProperty( "color", new QgsDataDefined( QString( WALL_SHADING_EXPRESSION ) ) );

setShadowSpread( 4 );
setShadowColor( QColor( "#1111111" ) );
setShadowColor( QColor( "#111111" ) );

QgsFeatureRequest::OrderBy orderBy;
orderBy << QgsFeatureRequest::OrderByClause(
Expand Down

0 comments on commit 4d4ab63

Please sign in to comment.