From 69039ceb43d176b5498b4b9fff2152867e4fb0e0 Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Tue, 16 Feb 2021 12:18:49 +0100 Subject: [PATCH] libweston-desktop: Disable xdg_shell_v6 xdg_shell stable has been available for a long time, so xdg_shell_v6 should no longer be needed. However, to play it safe, we just disable it for now. We can then remove the implementation entirely later. Signed-off-by: Kenny Levinsen --- libweston-desktop/libweston-desktop.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libweston-desktop/libweston-desktop.c b/libweston-desktop/libweston-desktop.c index d92958d4..c1efd201 100644 --- a/libweston-desktop/libweston-desktop.c +++ b/libweston-desktop/libweston-desktop.c @@ -77,13 +77,6 @@ weston_desktop_create(struct weston_compositor *compositor, return NULL; } - desktop->xdg_shell_v6 = - weston_desktop_xdg_shell_v6_create(desktop, display); - if (desktop->xdg_shell_v6 == NULL) { - weston_desktop_destroy(desktop); - return NULL; - } - desktop->wl_shell = weston_desktop_wl_shell_create(desktop, display); if (desktop->wl_shell == NULL) {