15 lines
355 B
Rust
15 lines
355 B
Rust
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
use crate::state::State;
|
|
use smithay::{
|
|
delegate_xdg_foreign,
|
|
wayland::xdg_foreign::{XdgForeignHandler, XdgForeignState},
|
|
};
|
|
|
|
impl XdgForeignHandler for State {
|
|
fn xdg_foreign_state(&mut self) -> &mut XdgForeignState {
|
|
&mut self.common.xdg_foreign_state
|
|
}
|
|
}
|
|
|
|
delegate_xdg_foreign!(State);
|