diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2013-10-17 12:05:44 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2013-10-31 22:35:58 +0100 |
commit | fa12af3d0190cd2b6b7cbcc10977e981813106ad (patch) | |
tree | 5e7bc3c5510f819343f721d71b1c769d8eea851f /gst/geometrictransform | |
parent | 2285d4440b5488af9e1fd8e481bda15acdc61d26 (diff) | |
download | gstreamer-plugins-bad-fa12af3d0190cd2b6b7cbcc10977e981813106ad.tar.gz |
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
Diffstat (limited to 'gst/geometrictransform')
-rw-r--r-- | gst/geometrictransform/gstrotate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/geometrictransform/gstrotate.c b/gst/geometrictransform/gstrotate.c index 493e2b674..b48747986 100644 --- a/gst/geometrictransform/gstrotate.c +++ b/gst/geometrictransform/gstrotate.c @@ -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)); |