Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
change alpha
  • Loading branch information
Koyaani authored and nyalldawson committed Sep 23, 2021
1 parent 2ed73d3 commit bf946f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/plugins/geometry_checker/qgsgeometrycheckerresulttab.cpp
Expand Up @@ -352,7 +352,9 @@ void QgsGeometryCheckerResultTab::highlightErrors( bool current )
QgsRubberBand *featureRubberBand = new QgsRubberBand( mIface->mapCanvas() );
featureRubberBand->setToGeometry( geom, nullptr );
featureRubberBand->setWidth( 5 );
featureRubberBand->setColor( Qt::yellow );
QColor color( Qt::yellow );
color.setAlpha( 43 );
featureRubberBand->setColor( color );
mCurrentRubberBands.append( featureRubberBand );
}

Expand Down

0 comments on commit bf946f8

Please sign in to comment.