From 0044578681cee50fd7ad49fcb8d1e2ea53d85fe4 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Mon, 11 Aug 2025 09:39:17 +0300 Subject: Fix new lifetime warnings --- src/window/mapped.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window') diff --git a/src/window/mapped.rs b/src/window/mapped.rs index ec7c67b8..0f39bef4 100644 --- a/src/window/mapped.rs +++ b/src/window/mapped.rs @@ -303,7 +303,7 @@ impl Mapped { self.credentials.as_ref() } - pub fn offscreen_data(&self) -> Ref> { + pub fn offscreen_data(&self) -> Ref<'_, Option> { self.offscreen_data.borrow() } -- cgit