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