From 81ca3d2a223d62fbb48b93dcea5409f6212605fa Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 20 Feb 2025 04:03:14 +0100 Subject: Fix broken links in `Pop::delay` documentation --- widget/src/pop.rs | 4 ++++ 1 file changed, 4 insertions(+) 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) -> Self { self.delay = delay.into(); self -- cgit