basetextoverlay: Fix typo in "text-y" property description

Looks like a copy and paste error.

Co-authored-by: Fabian Orccon <cfoch.fabian@gmail.com>
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4823>
This commit is contained in:
William Manley 2016-06-01 11:52:38 +01:00 committed by GStreamer Marge Bot
parent 343c42ca84
commit 04bcff4dce
2 changed files with 2 additions and 2 deletions

View file

@ -9225,7 +9225,7 @@
"writable": false
},
"text-y": {
"blurb": "Resulting X position of font rendering.",
"blurb": "Resulting Y position of font rendering.",
"conditionally-available": false,
"construct": false,
"construct-only": false,

View file

@ -430,7 +430,7 @@ gst_base_text_overlay_class_init (GstBaseTextOverlayClass * klass)
*/
g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_TEXT_Y,
g_param_spec_int ("text-y", "vertical position",
"Resulting X position of font rendering.", -G_MAXINT,
"Resulting Y position of font rendering.", -G_MAXINT,
G_MAXINT, DEFAULT_PROP_TEXT_Y, G_PARAM_READABLE));
/**