basetextoverlay: Fix typo in "text-y" property description
authorWilliam Manley <will@williammanley.net>
Wed, 1 Jun 2016 10:52:38 +0000 (11:52 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 10 Jun 2023 22:48:39 +0000 (23:48 +0100)
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/4827>

subprojects/gst-plugins-base/docs/plugins/gst_plugins_cache.json
subprojects/gst-plugins-base/ext/pango/gstbasetextoverlay.c

index 13c76a7..10fd250 100644 (file)
                         "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,
index 2454a50..9eb7d30 100644 (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));
 
   /**