mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +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
|
"writable": false
|
||||||
},
|
},
|
||||||
"text-y": {
|
"text-y": {
|
||||||
"blurb": "Resulting X position of font rendering.",
|
"blurb": "Resulting Y position of font rendering.",
|
||||||
"conditionally-available": false,
|
"conditionally-available": false,
|
||||||
"construct": false,
|
"construct": false,
|
||||||
"construct-only": 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_object_class_install_property (G_OBJECT_CLASS (klass), PROP_TEXT_Y,
|
||||||
g_param_spec_int ("text-y", "vertical position",
|
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));
|
G_MAXINT, DEFAULT_PROP_TEXT_Y, G_PARAM_READABLE));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue