Skip to content

Commit

Permalink
change histogram bar outline color from black to lightGray
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennesky committed Feb 22, 2014
1 parent 14ee392 commit 80909ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/raster/qgsrasterhistogramwidget.cpp
Expand Up @@ -491,8 +491,8 @@ void QgsRasterHistogramWidget::refreshHistogram()
mypHisto = new QwtPlotHistogram( tr( "Band %1" ).arg( myIteratorInt ) );
mypHisto->setRenderHint( QwtPlotItem::RenderAntialiased );
//mypHisto->setPen( QPen( mHistoColors.at( myIteratorInt ) ) );
mypHisto->setPen( QPen( Qt::lightGray ) );
// this is needed in order to see the colors in the legend
mypHisto->setPen( QPen( Qt::black ) );
mypHisto->setBrush( QBrush( mHistoColors.at( myIteratorInt ) ) );
}
#else
Expand Down

0 comments on commit 80909ca

Please sign in to comment.