Skip to content

Commit

Permalink
Fix for bug #2617
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@13220 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Apr 1, 2010
1 parent 6da87bc commit 61c7b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgstextannotationdialog.cpp
Expand Up @@ -106,7 +106,7 @@ void QgsTextAnnotationDialog::on_mFontColorButton_clicked()
#if QT_VERSION >= 0x040500
QColor newColor = QColorDialog::getColor( mFontColorButton->color(), 0, tr( "Select font color" ), QColorDialog::ShowAlphaChannel );
#else
QColor newColor = QColorDialog::getColor( mFontColorButton->arrowColor() );
QColor newColor = QColorDialog::getColor( mFontColorButton->color() );
#endif
if ( !newColor.isValid() )
{
Expand Down

0 comments on commit 61c7b4c

Please sign in to comment.