app-list: clippy fixes

This commit is contained in:
Victoria Brekenfeld 2024-01-31 18:12:37 +01:00
parent dfd863c54f
commit 89986d8268
2 changed files with 1 additions and 5 deletions

View file

@ -215,9 +215,6 @@ pub(crate) fn wayland_handler(
let manager = &state.toplevel_manager_state.manager;
manager.close(&handle);
}
ToplevelRequest::Exit => {
state.exit = true;
}
},
WaylandRequest::TokenRequest {
app_id,

View file

@ -12,7 +12,7 @@ use futures::{
SinkExt, StreamExt,
};
use once_cell::sync::Lazy;
use std::{fmt::Debug, hash::Hash, thread::JoinHandle};
use std::fmt::Debug;
use tokio::sync::Mutex;
use crate::wayland_handler::wayland_handler;
@ -107,5 +107,4 @@ pub enum WaylandRequest {
pub enum ToplevelRequest {
Activate(ZcosmicToplevelHandleV1),
Quit(ZcosmicToplevelHandleV1),
Exit,
}