diff options
author | 2025-02-20 04:03:14 +0100 | |
---|---|---|
committer | 2025-02-20 04:03:14 +0100 | |
commit | 81ca3d2a223d62fbb48b93dcea5409f6212605fa (patch) | |
tree | 4b95f503154c2278ba0a501627a4b288159061fd | |
parent | ffc412d6b7f8009c783715c021fc36780f26db36 (diff) | |
download | iced-81ca3d2a223d62fbb48b93dcea5409f6212605fa.tar.gz iced-81ca3d2a223d62fbb48b93dcea5409f6212605fa.tar.bz2 iced-81ca3d2a223d62fbb48b93dcea5409f6212605fa.zip |
Fix broken links in `Pop::delay` documentation
-rw-r--r-- | widget/src/pop.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/widget/src/pop.rs b/widget/src/pop.rs index d6dd6bb7..5add1525 100644 --- a/widget/src/pop.rs +++ b/widget/src/pop.rs @@ -94,6 +94,10 @@ where /// [`on_hide`] event; after the content is shown or hidden. /// /// When combined with [`key`], this can be useful to debounce key changes. + /// + /// [`on_show`]: Self::on_show + /// [`on_hide`]: Self::on_hide + /// [`key`]: Self::key pub fn delay(mut self, delay: impl Into<Duration>) -> Self { self.delay = delay.into(); self |