@@ -204,8 +204,8 @@ QgsPalLayerSettings::QgsPalLayerSettings()
204
204
offsetType = FromPoint;
205
205
angleOffset = 0 ;
206
206
preserveRotation = true ;
207
- maxCurvedCharAngleIn = 20 .0 ;
208
- maxCurvedCharAngleOut = -20 .0 ;
207
+ maxCurvedCharAngleIn = 25 .0 ;
208
+ maxCurvedCharAngleOut = -25 .0 ;
209
209
priority = 5 ;
210
210
repeatDistance = 0 ;
211
211
repeatDistanceUnit = MM;
@@ -1040,8 +1040,8 @@ void QgsPalLayerSettings::readFromLayer( QgsVectorLayer* layer )
1040
1040
}
1041
1041
angleOffset = layer->customProperty ( " labeling/angleOffset" , QVariant ( 0.0 ) ).toDouble ();
1042
1042
preserveRotation = layer->customProperty ( " labeling/preserveRotation" , QVariant ( true ) ).toBool ();
1043
- maxCurvedCharAngleIn = layer->customProperty ( " labeling/maxCurvedCharAngleIn" , QVariant ( 20 .0 ) ).toDouble ();
1044
- maxCurvedCharAngleOut = layer->customProperty ( " labeling/maxCurvedCharAngleOut" , QVariant ( -20 .0 ) ).toDouble ();
1043
+ maxCurvedCharAngleIn = layer->customProperty ( " labeling/maxCurvedCharAngleIn" , QVariant ( 25 .0 ) ).toDouble ();
1044
+ maxCurvedCharAngleOut = layer->customProperty ( " labeling/maxCurvedCharAngleOut" , QVariant ( -25 .0 ) ).toDouble ();
1045
1045
priority = layer->customProperty ( " labeling/priority" ).toInt ();
1046
1046
repeatDistance = layer->customProperty ( " labeling/repeatDistance" , 0.0 ).toDouble ();
1047
1047
repeatDistanceUnit = static_cast < SizeUnit >( layer->customProperty ( " labeling/repeatDistanceUnit" , QVariant ( MM ) ).toUInt () );
@@ -1496,8 +1496,8 @@ void QgsPalLayerSettings::readXml( QDomElement& elem )
1496
1496
}
1497
1497
angleOffset = placementElem.attribute ( " angleOffset" , " 0" ).toDouble ();
1498
1498
preserveRotation = placementElem.attribute ( " preserveRotation" , " 1" ).toInt ();
1499
- maxCurvedCharAngleIn = placementElem.attribute ( " maxCurvedCharAngleIn" , " 20 " ).toDouble ();
1500
- maxCurvedCharAngleOut = placementElem.attribute ( " maxCurvedCharAngleOut" , " -20 " ).toDouble ();
1499
+ maxCurvedCharAngleIn = placementElem.attribute ( " maxCurvedCharAngleIn" , " 25 " ).toDouble ();
1500
+ maxCurvedCharAngleOut = placementElem.attribute ( " maxCurvedCharAngleOut" , " -25 " ).toDouble ();
1501
1501
priority = placementElem.attribute ( " priority" ).toInt ();
1502
1502
repeatDistance = placementElem.attribute ( " repeatDistance" , " 0" ).toDouble ();
1503
1503
repeatDistanceUnit = static_cast < SizeUnit >( placementElem.attribute ( " repeatDistanceUnit" , QString::number ( MM ) ).toUInt () );
0 commit comments