Showing with 3 additions and 3 deletions.
  1. +2 −2 src/app/qgsmaptoolcapture.cpp
  2. +1 −1 src/gui/symbology-ng/qgsrendererv2widget.cpp
4 changes: 2 additions & 2 deletions src/app/qgsmaptoolcapture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ void QgsMapToolCapture::canvasMoveEvent( QMouseEvent * e )
{
QgsVertexMarker *m = new QgsVertexMarker( mCanvas );
m->setIconType( QgsVertexMarker::ICON_CROSS );
m->setColor( Qt::green );
m->setPenWidth( 2 );
m->setColor( Qt::magenta );
m->setPenWidth( 3 );
m->setCenter( r.snappedVertex );
mSnappingMarkers << m;
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgsrendererv2widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void QgsRendererV2Widget::changeSymbolColor()
return;
}

QColor color = QColorDialog::getColor( symbolList.at( 0 )->color(), this );
QColor color = QColorDialog::getColor( symbolList.at( 0 )->color(), this, "Change Symbol Color", QColorDialog::ShowAlphaChannel );
if ( color.isValid() )
{
QList<QgsSymbolV2*>::iterator symbolIt = symbolList.begin();
Expand Down