Navigation Menu

Skip to content

Commit

Permalink
Bump truncate threshold
Browse files Browse the repository at this point in the history
Co-authored-by: Denis Rouzaud <denis.rouzaud@gmail.com>
  • Loading branch information
m-kuhn and 3nids committed Nov 19, 2021
1 parent d61846e commit a998fea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsfield.cpp
Expand Up @@ -267,7 +267,7 @@ QString QgsField::displayString( const QVariant &v ) const
else
{
QString formattedText = QStringLiteral( "%1 [%2]" ).arg( geom.asWkt(), geom.crs().userFriendlyIdentifier() );
if ( formattedText.length() >= 1000 )
if ( formattedText.length() >= 1050 )
{
formattedText = formattedText.left( 999 ) + QChar( 0x2026 );
}
Expand Down

0 comments on commit a998fea

Please sign in to comment.