Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #7705, remove alpha transparency from default color for map overv…
…iew frames
  • Loading branch information
nyalldawson committed Jun 3, 2013
1 parent 0192e37 commit 0f21022
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/composer/qgscomposermap.cpp
Expand Up @@ -2218,7 +2218,7 @@ void QgsComposerMap::createDefaultOverviewFrameSymbol()
{
delete mOverviewFrameMapSymbol;
QgsStringMap properties;
properties.insert( "color", "255,0,0,125" );
properties.insert( "color", "255,0,0,255" );
properties.insert( "style", "solid" );
properties.insert( "style_border", "no" );
mOverviewFrameMapSymbol = QgsFillSymbolV2::createSimple( properties );
Expand Down

0 comments on commit 0f21022

Please sign in to comment.