Skip to content
Permalink
Browse files
Fix help text for color format
Should be #AARRGGBB, not #RRGGBBAA (see http://doc.qt.io/qt-5/qcolor.html#setNamedColor)

(cherry picked from commit 462ebed)
  • Loading branch information
nyalldawson committed Dec 11, 2018
1 parent 4166a5f commit 7218cf5
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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:

0 comments on commit 7218cf5

Please sign in to comment.