Skip to content

Commit 0efa0b1

Browse files
committed
Fix space inserted at start of graduated legend entries
Fixes #21339
1 parent 918f5f3 commit 0efa0b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/symbology/qgsgraduatedsymbolrenderer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ const int QgsRendererRangeLabelFormat::MAX_PRECISION = 15;
176176
const int QgsRendererRangeLabelFormat::MIN_PRECISION = -6;
177177

178178
QgsRendererRangeLabelFormat::QgsRendererRangeLabelFormat()
179-
: mFormat( QStringLiteral( " %1 - %2 " ) )
179+
: mFormat( QStringLiteral( "%1 - %2" ) )
180180
, mReTrailingZeroes( "[.,]?0*$" )
181181
, mReNegativeZero( "^\\-0(?:[.,]0*)?$" )
182182
{

0 commit comments

Comments
 (0)