From 31891e6642481c018357354583db804657c09c53 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Sat, 15 Mar 2025 11:23:01 +0300 Subject: Implement dynamic screencast target --- 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 ac508990..16dfc4d4 100644 --- a/src/window/mapped.rs +++ b/src/window/mapped.rs @@ -136,7 +136,7 @@ static MAPPED_ID_COUNTER: IdCounter = IdCounter::new(); pub struct MappedId(u64); impl MappedId { - fn next() -> MappedId { + pub fn next() -> MappedId { MappedId(MAPPED_ID_COUNTER.next()) } -- cgit