Skip to content

Commit

Permalink
(changed default color)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierdalang authored and mhugent committed Jan 22, 2013
1 parent f6cda09 commit 6566bab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/composer/qgscomposerscalebar.cpp
Expand Up @@ -40,7 +40,7 @@ QgsComposerScaleBar::QgsComposerScaleBar( QgsComposition* composition )
, mSegmentMillimeters( 0.0 )
, mAlignment( Left )
, mUnits( MapUnits )
, mFontColor( QColor( 255, 0, 0 ) )//TODO : set to 0,0,0
, mFontColor( QColor( 0, 0, 0 ) )
{
applyDefaultSettings();
applyDefaultSize();
Expand Down Expand Up @@ -228,7 +228,7 @@ void QgsComposerScaleBar::applyDefaultSettings()
mBrush.setStyle( Qt::SolidPattern );

mFont.setPointSizeF( 12.0 );
mFontColor = QColor( 255, 0, 0 );//TODO : set to 0,0,0
mFontColor = QColor( 0, 0, 0 );

mLabelBarSpace = 3.0;
mBoxContentSpace = 1.0;
Expand Down

0 comments on commit 6566bab

Please sign in to comment.