Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIX] Alpha for ellipse marker
  • Loading branch information
m-kuhn committed Nov 9, 2012
1 parent 3564eae commit 3250221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/symbology-ng/qgsellipsesymbollayerv2widget.cpp
Expand Up @@ -191,7 +191,7 @@ void QgsEllipseSymbolLayerV2Widget::on_btnChangeColorBorder_clicked()
{
if ( mLayer )
{
QColor newColor = QColorDialog::getColor( mLayer->outlineColor() );
QColor newColor = QColorDialog::getColor( mLayer->outlineColor(), this, "", QColorDialog::ShowAlphaChannel );
if ( newColor.isValid() )
{
mLayer->setOutlineColor( newColor );
Expand All @@ -205,7 +205,7 @@ void QgsEllipseSymbolLayerV2Widget::on_btnChangeColorFill_clicked()
{
if ( mLayer )
{
QColor newColor = QColorDialog::getColor( mLayer->fillColor() );
QColor newColor = QColorDialog::getColor( mLayer->fillColor(), this, "", QColorDialog::ShowAlphaChannel );
if ( newColor.isValid() )
{
mLayer->setFillColor( newColor );
Expand Down

0 comments on commit 3250221

Please sign in to comment.