Skip to content

Commit

Permalink
[ui] use lowercase group name for help text in expression builder
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Sep 4, 2018
1 parent aae41c0 commit 40e4f0f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/core/expression/qgsexpression.cpp
Expand Up @@ -548,7 +548,10 @@ QString QgsExpression::helpText( QString name )

name = f.mName;
if ( f.mType == tr( "group" ) )
{
name = group( name );
name = name.toLower();
}

name = name.toHtmlEscaped();

Expand Down

0 comments on commit 40e4f0f

Please sign in to comment.