Skip to content

Commit 09691ba

Browse files
author
mhugent
committedApr 1, 2010
Fix for bug #2617
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13220 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgstextannotationdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void QgsTextAnnotationDialog::on_mFontColorButton_clicked()
106106
#if QT_VERSION >= 0x040500
107107
QColor newColor = QColorDialog::getColor( mFontColorButton->color(), 0, tr( "Select font color" ), QColorDialog::ShowAlphaChannel );
108108
#else
109-
QColor newColor = QColorDialog::getColor( mFontColorButton->arrowColor() );
109+
QColor newColor = QColorDialog::getColor( mFontColorButton->color() );
110110
#endif
111111
if ( !newColor.isValid() )
112112
{

0 commit comments

Comments
 (0)
Please sign in to comment.