Skip to content

Commit 2834e98

Browse files
committed
Fix missing alpha picker
1 parent e1dc810 commit 2834e98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/symbology-ng/qgsrendererv2widget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void QgsRendererV2Widget::changeSymbolColor()
5454
return;
5555
}
5656

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

0 commit comments

Comments
 (0)