cosmic-comp/src/wayland/handlers/xwayland_shell.rs
2026-05-19 19:26:25 +02:00

10 lines
310 B
Rust

// SPDX-License-Identifier: GPL-3.0-only
use crate::state::State;
use smithay::wayland::xwayland_shell::{XWaylandShellHandler, XWaylandShellState};
impl XWaylandShellHandler for State {
fn xwayland_shell_state(&mut self) -> &mut XWaylandShellState {
&mut self.common.xwayland_shell_state
}
}