Skip to content

Commit

Permalink
fix loading the labeling-setting to show a plus-sign next to numbers
Browse files Browse the repository at this point in the history
(fixes #13474)
  • Loading branch information
SebDieBln committed Jan 24, 2016
1 parent e83a7c8 commit df4c0c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgspallabeling.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ void QgsPalLayerSettings::readFromLayer( QgsVectorLayer* layer )
placeDirectionSymbol = static_cast< DirectionSymbols >( layer->customProperty( "labeling/placeDirectionSymbol", QVariant( SymbolLeftRight ) ).toUInt() );
formatNumbers = layer->customProperty( "labeling/formatNumbers" ).toBool();
decimals = layer->customProperty( "labeling/decimals" ).toInt();
plusSign = layer->customProperty( "labeling/plussign" ).toInt();
plusSign = layer->customProperty( "labeling/plussign" ).toBool();

// text buffer
double bufSize = layer->customProperty( "labeling/bufferSize", QVariant( 0.0 ) ).toDouble();
Expand Down

0 comments on commit df4c0c1

Please sign in to comment.