diff options
Diffstat (limited to '')
-rw-r--r-- | native/src/window/id.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/src/window/id.rs b/native/src/window/id.rs index 0c3e5272..0a11b1aa 100644 --- a/native/src/window/id.rs +++ b/native/src/window/id.rs @@ -4,6 +4,8 @@ use std::hash::{Hash, Hasher}; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord)] /// The ID of the window. +/// +/// Internally Iced uses `window::Id::MAIN` as the first window spawned. pub struct Id(u64); impl Id { |