From 246caffb348bb13816ed446e6defac6131d005ca Mon Sep 17 00:00:00 2001 From: shadow cat Date: Fri, 21 Nov 2025 20:25:55 -0500 Subject: [PATCH] fix warning --- src/util/id.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util/id.rs b/src/util/id.rs index 2865e41..815d635 100644 --- a/src/util/id.rs +++ b/src/util/id.rs @@ -26,6 +26,9 @@ impl IdTracker { } impl Id { + #[allow(dead_code)] + /// for debug purposes; should this be exposed? + /// generally you want to use labels with widgets pub(crate) fn raw(id: I) -> Self { Self(id) }