From 0253f10dcca5a2ac384ec07dd80a10e9497f7671 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Sat, 19 Jul 2025 21:44:56 +0200 Subject: [PATCH] xdg-popup: fix XdgPopup::node_output --- src/ifs/wl_surface/xdg_surface/xdg_popup.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifs/wl_surface/xdg_surface/xdg_popup.rs b/src/ifs/wl_surface/xdg_surface/xdg_popup.rs index 1560242b..6f532121 100644 --- a/src/ifs/wl_surface/xdg_surface/xdg_popup.rs +++ b/src/ifs/wl_surface/xdg_surface/xdg_popup.rs @@ -317,7 +317,7 @@ impl Node for XdgPopup { } fn node_output(&self) -> Option> { - self.xdg.workspace.get().map(|w| w.output.get()) + Some(self.xdg.surface.output.get()) } fn node_location(&self) -> Option {