mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
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:
parent
343c42ca84
commit
04bcff4dce
2 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -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));
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue