Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix help text for color format
Should be #AARRGGBB, not #RRGGBBAA (see http://doc.qt.io/qt-5/qcolor.html#setNamedColor)
  • Loading branch information
nyalldawson committed Dec 10, 2018
1 parent 9493f55 commit 462ebed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsproperty.cpp
Expand Up @@ -87,7 +87,7 @@ QgsPropertyDefinition::QgsPropertyDefinition( const QString &name, const QString

case ColorWithAlpha:
mTypes = DataTypeString;
mHelpText = QObject::tr( "string [<b>r,g,b,a</b>] as int 0-255 or #<b>RRGGBBAA</b> as hex or <b>color</b> as color's name" );
mHelpText = QObject::tr( "string [<b>r,g,b,a</b>] as int 0-255 or #<b>AARRGGBB</b> as hex or <b>color</b> as color's name" );
break;

case ColorNoAlpha:
Expand Down

0 comments on commit 462ebed

Please sign in to comment.