Skip to content

Commit

Permalink
Add missing alpha value option for colour ramps
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jul 20, 2013
1 parent 09f1707 commit bb2d8f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/symbology-ng/qgsvectorgradientcolorrampv2dialog.cpp
Expand Up @@ -268,7 +268,8 @@ void QgsVectorGradientColorRampV2Dialog::stopDoubleClicked( QTreeWidgetItem* ite
mCurrentItem = item;
color = QgsColorDialog::getLiveColor(
item->data( 0, StopColorRole ).value<QColor>(),
this, SLOT( setItemStopColor( const QColor& ) ), this );
this, SLOT( setItemStopColor( const QColor& ) ),
this, tr("Edit Stop Color"), QColorDialog::ShowAlphaChannel );
mCurrentItem = 0;
}
else
Expand Down

0 comments on commit bb2d8f8

Please sign in to comment.