diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-03-15 11:23:01 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-03-15 09:55:46 -0700 |
| commit | 31891e6642481c018357354583db804657c09c53 (patch) | |
| tree | f52ffe3fe28ebee0a7b93112285ed3a09e4c90b6 /src/window | |
| parent | 392fc27de110d3548095e465d5cb38bd8d5730ea (diff) | |
| download | niri-31891e6642481c018357354583db804657c09c53.tar.gz niri-31891e6642481c018357354583db804657c09c53.tar.bz2 niri-31891e6642481c018357354583db804657c09c53.zip | |
Implement dynamic screencast target
Diffstat (limited to 'src/window')
| -rw-r--r-- | src/window/mapped.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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()) } |
