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...
This commit is contained in:
Ian Douglas Scott 2025-03-03 12:59:23 -08:00 committed by Ian Douglas Scott
parent aac8166962
commit 8b63e09ddc

View file

@ -109,6 +109,7 @@ where
}
}
}
zcosmic_workspace_manager_v2::Request::Destroy => {}
_ => unreachable!(),
}
}
@ -170,6 +171,7 @@ where
});
}
}
zcosmic_workspace_handle_v2::Request::Destroy => {}
_ => unreachable!(),
}
}