refactor(wayland): remove SeatData wrapper

This commit is contained in:
Nova
2023-01-22 02:38:40 -05:00
parent 2358ee899a
commit f46e870864
3 changed files with 41 additions and 53 deletions

View File

@@ -61,7 +61,7 @@ pub struct WaylandState {
pub dmabuf_global: DmabufGlobal,
pub pending_dmabufs: Vec<Dmabuf>,
pub output: Output,
pub seats: FxHashMap<ClientId, SeatData>,
pub seats: FxHashMap<ClientId, Arc<SeatData>>,
}
impl WaylandState {