We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc1bda commit 1ae3163Copy full SHA for 1ae3163
src/core/effects/qgstransformeffect.cpp
@@ -94,6 +94,8 @@ void QgsTransformEffect::readProperties( const QgsStringMap &props )
94
mScaleX = props.value( "scale_x", "1.0" ).toDouble();
95
mScaleY = props.value( "scale_y", "1.0" ).toDouble();
96
mRotation = props.value( "rotation", "0.0" ).toDouble();
97
+ mShearX = props.value( "shear_x", "0.0" ).toDouble();
98
+ mShearY = props.value( "shear_y", "0.0" ).toDouble();
99
mTranslateX = props.value( "translate_x", "0.0" ).toDouble();
100
mTranslateY = props.value( "translate_y", "0.0" ).toDouble();
101
mTranslateUnit = QgsSymbolLayerV2Utils::decodeOutputUnit( props.value( "translate_unit" ) );
0 commit comments