Skip to content

Commit

Permalink
Fix format specification for data defined colors
Browse files Browse the repository at this point in the history
Fixes #40792

(cherry picked from commit be2c1ec)
  • Loading branch information
nyalldawson committed Jan 4, 2021
1 parent 9a60b47 commit 0bb6e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsproperty.cpp
Expand Up @@ -88,7 +88,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 0bb6e11

Please sign in to comment.