From da06637e4ee327d5402bb87d4d13273a23469085 Mon Sep 17 00:00:00 2001 From: William Manley Date: Wed, 1 Jun 2016 11:52:38 +0100 Subject: [PATCH] basetextoverlay: Fix typo in "text-y" property description Looks like a copy and paste error. Co-authored-by: Fabian Orccon Part-of: --- .../gst-plugins-base/docs/plugins/gst_plugins_cache.json | 2 +- subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-base/docs/plugins/gst_plugins_cache.json b/subprojects/gst-plugins-base/docs/plugins/gst_plugins_cache.json index 13c76a7de3..10fd250662 100644 --- a/subprojects/gst-plugins-base/docs/plugins/gst_plugins_cache.json +++ b/subprojects/gst-plugins-base/docs/plugins/gst_plugins_cache.json @@ -8923,7 +8923,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, diff --git a/subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c b/subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c index 2454a50e33..9eb7d305fb 100644 --- a/subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c +++ b/subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c @@ -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)); /**