From fa12af3d0190cd2b6b7cbcc10977e981813106ad Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Thu, 17 Oct 2013 12:05:44 +0200 Subject: [PATCH] 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 --- docs/plugins/gst-plugins-bad-plugins.args | 2 +- gst/geometrictransform/gstrotate.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plugins/gst-plugins-bad-plugins.args b/docs/plugins/gst-plugins-bad-plugins.args index 07730dbb56..d70d914c40 100644 --- a/docs/plugins/gst-plugins-bad-plugins.args +++ b/docs/plugins/gst-plugins-bad-plugins.args @@ -47599,7 +47599,7 @@ rw angle -Angle at which the arc starts in radians. +Angle by which the picture is rotated, in radians. 0 diff --git a/gst/geometrictransform/gstrotate.c b/gst/geometrictransform/gstrotate.c index 493e2b674c..b48747986c 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));