From a795c9bc6a7e5da0af11140702c68037bc1eb698 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Tue, 22 Aug 2023 14:54:36 -0400 Subject: [PATCH] waylandsink: Restore support for render-rectangle Fixes #2519 Part-of: --- subprojects/gst-plugins-bad/ext/wayland/gstwaylandsink.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/ext/wayland/gstwaylandsink.c b/subprojects/gst-plugins-bad/ext/wayland/gstwaylandsink.c index 1fcb44ef5b..1c597f2135 100644 --- a/subprojects/gst-plugins-bad/ext/wayland/gstwaylandsink.c +++ b/subprojects/gst-plugins-bad/ext/wayland/gstwaylandsink.c @@ -317,7 +317,8 @@ gst_wayland_sink_set_property (GObject * object, GST_OBJECT_UNLOCK (self); break; default: - G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); + if (!gst_video_overlay_set_property (object, PROP_LAST, prop_id, value)) + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } }