Skip to content

Commit 7218cf5

Browse files
committedDec 11, 2018
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)
1 parent 4166a5f commit 7218cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsproperty.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ QgsPropertyDefinition::QgsPropertyDefinition( const QString &name, const QString
8787

8888
case ColorWithAlpha:
8989
mTypes = DataTypeString;
90-
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" );
90+
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" );
9191
break;
9292

9393
case ColorNoAlpha:

0 commit comments

Comments
 (0)
Please sign in to comment.