Skip to content

Commit 80909ca

Browse files
committed
change histogram bar outline color from black to lightGray
1 parent 14ee392 commit 80909ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/raster/qgsrasterhistogramwidget.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -491,8 +491,8 @@ void QgsRasterHistogramWidget::refreshHistogram()
491491
mypHisto = new QwtPlotHistogram( tr( "Band %1" ).arg( myIteratorInt ) );
492492
mypHisto->setRenderHint( QwtPlotItem::RenderAntialiased );
493493
//mypHisto->setPen( QPen( mHistoColors.at( myIteratorInt ) ) );
494+
mypHisto->setPen( QPen( Qt::lightGray ) );
494495
// this is needed in order to see the colors in the legend
495-
mypHisto->setPen( QPen( Qt::black ) );
496496
mypHisto->setBrush( QBrush( mHistoColors.at( myIteratorInt ) ) );
497497
}
498498
#else

0 commit comments

Comments
 (0)