rotate: Fix angle property help text

The help text of the angle property was probably copied from the circle
plugin, fix it to mention the rotation determined by the angle.

https://bugzilla.gnome.org/show_bug.cgi?id=710391
This commit is contained in:
Antonio Ospite 2013-10-17 12:05:44 +02:00 committed by Sebastian Dröge
parent 2285d4440b
commit fa12af3d01
2 changed files with 2 additions and 2 deletions

View file

@ -47599,7 +47599,7 @@
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>angle</NICK>
<BLURB>Angle at which the arc starts in radians.</BLURB>
<BLURB>Angle by which the picture is rotated, in radians.</BLURB>
<DEFAULT>0</DEFAULT>
</ARG>

View file

@ -197,7 +197,7 @@ gst_rotate_class_init (GstRotateClass * klass)
g_object_class_install_property (gobject_class, PROP_ANGLE,
g_param_spec_double ("angle", "angle",
"Angle at which the arc starts in radians",
"Angle by which the picture is rotated, in radians",
-G_MAXDOUBLE, G_MAXDOUBLE, DEFAULT_ANGLE,
GST_PARAM_CONTROLLABLE | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));