2024-05-13 14:16:21 -07:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
|
|
|
|
|
|
use crate::state::State;
|
2026-04-28 16:58:33 -07:00
|
|
|
use smithay::wayland::xwayland_shell::{XWaylandShellHandler, XWaylandShellState};
|
2024-05-13 14:16:21 -07:00
|
|
|
|
|
|
|
|
impl XWaylandShellHandler for State {
|
|
|
|
|
fn xwayland_shell_state(&mut self) -> &mut XWaylandShellState {
|
|
|
|
|
&mut self.common.xwayland_shell_state
|
|
|
|
|
}
|
|
|
|
|
}
|