gtk4: Add missing interfaces to the widget

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1904>
This commit is contained in:
Sebastian Dröge 2024-11-02 13:00:28 +02:00
parent f4b93dc0fb
commit 76282cd385

View file

@ -13,7 +13,7 @@ mod imp;
/// Use a simple container widget to automatically pass the window size to gtk4paintablesink.
glib::wrapper! {
pub struct RenderWidget(ObjectSubclass<imp::RenderWidget>) @extends gtk::Widget;
pub struct RenderWidget(ObjectSubclass<imp::RenderWidget>) @extends gtk::Widget, @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}
impl RenderWidget {