Update smithay for DnD updates

This commit is contained in:
Victoria Brekenfeld 2025-11-10 18:32:34 +01:00 committed by Victoria Brekenfeld
parent 3ddc9421e4
commit 77d3605fb9
12 changed files with 340 additions and 99 deletions

View file

@ -287,6 +287,12 @@ fn format_pointer_focus(focus: Option<PointerFocusTarget>) -> String {
}
_ => format!("Surface {}", surface.id().protocol_id()),
},
Some(X11Surface { surface, toplevel }) => match toplevel {
Some(window) => {
format!("Window {} ({})", surface.window_id(), window.title())
}
_ => format!("X11Surface {}", surface.window_id()),
},
Some(StackUI(stack)) => format!(
"Stack SSD {} ({})",
match stack.active().0.underlying_surface() {