Skip to content

Commit

Permalink
Sync canvas extent rect color and center marker color
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 16, 2017
1 parent 5b1afd8 commit 92c97df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/qgsprojectionselectiontreewidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ QgsProjectionSelectionTreeWidget::QgsProjectionSelectionTreeWidget( QWidget *par

mPreviewBand2 = new QgsRubberBand( mAreaCanvas, QgsWkbTypes::PolygonGeometry );
mPreviewBand2->setWidth( 4 );
QColor rectColor = QColor( 185, 84, 210, 60 );
QColor rectColor = QColor( 185, 84, 210, 60 );
mPreviewBand2->setColor( rectColor );

mVertexMarker = new QgsVertexMarker( mAreaCanvas );
mVertexMarker->setIconType( QgsVertexMarker::ICON_CROSS );
mVertexMarker->setColor( Qt::magenta );
mVertexMarker->setColor( QColor( 185, 84, 210 ) );
mVertexMarker->setPenWidth( 3 );

QgsCoordinateReferenceSystem srs( 4326, QgsCoordinateReferenceSystem::EpsgCrsId );
Expand Down

0 comments on commit 92c97df

Please sign in to comment.