Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix missing alpha picker
  • Loading branch information
NathanW2 committed Jul 25, 2013
1 parent e1dc810 commit 2834e98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgsrendererv2widget.cpp
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

0 comments on commit 2834e98

Please sign in to comment.