From 8b63e09ddcb0120986afe89c7db29887a72fe243 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Mon, 3 Mar 2025 12:59:23 -0800 Subject: [PATCH] fix(protocol/workspace): Handle cosmic-workspace-v2 destroy requests I forgot to handle these after I added them to destructors to the protocol. I wish we had exhaustiveness checking here... --- src/wayland/protocols/workspace/cosmic_v2.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wayland/protocols/workspace/cosmic_v2.rs b/src/wayland/protocols/workspace/cosmic_v2.rs index 03d72358..ab46c467 100644 --- a/src/wayland/protocols/workspace/cosmic_v2.rs +++ b/src/wayland/protocols/workspace/cosmic_v2.rs @@ -109,6 +109,7 @@ where } } } + zcosmic_workspace_manager_v2::Request::Destroy => {} _ => unreachable!(), } } @@ -170,6 +171,7 @@ where }); } } + zcosmic_workspace_handle_v2::Request::Destroy => {} _ => unreachable!(), } }