diff options
| author | 2023-07-12 19:21:05 -0700 | |
|---|---|---|
| committer | 2023-07-21 13:53:38 -0700 | |
| commit | d53ccc857da4d4cda769904342aeb5a82a64f146 (patch) | |
| tree | 7de16b72e0e054d10380586ba5b79a7181478aa7 /examples/toast/src | |
| parent | 633f405f3f78bc7f82d2b2061491b0e011137451 (diff) | |
| download | iced-d53ccc857da4d4cda769904342aeb5a82a64f146.tar.gz iced-d53ccc857da4d4cda769904342aeb5a82a64f146.tar.bz2 iced-d53ccc857da4d4cda769904342aeb5a82a64f146.zip | |
refactored window storage;
new helper window events (Destroyed, Created);
clippy + fmt;
Diffstat (limited to '')
| -rw-r--r-- | examples/toast/src/main.rs | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/examples/toast/src/main.rs b/examples/toast/src/main.rs index 4282ddcf..e28c4236 100644 --- a/examples/toast/src/main.rs +++ b/examples/toast/src/main.rs @@ -528,7 +528,9 @@ mod toast {              clipboard: &mut dyn Clipboard,              shell: &mut Shell<'_, Message>,          ) -> event::Status { -            if let Event::Window(window::Event::RedrawRequested(now)) = &event { +            if let Event::Window(_, window::Event::RedrawRequested(now)) = +                &event +            {                  let mut next_redraw: Option<window::RedrawRequest> = None;                  self.instants.iter_mut().enumerate().for_each( | 
