diff options
author | 2023-11-29 22:37:54 +0100 | |
---|---|---|
committer | 2023-11-29 22:37:54 +0100 | |
commit | 7def3ee38a3f0f24a331d722b09f325fc9584625 (patch) | |
tree | f18ebac65a94c99db5f6b0d7413e63ed9298a54b /runtime | |
parent | 9b34b2ac19a8fdd424581d160bc702e096a2b46a (diff) | |
download | iced-7def3ee38a3f0f24a331d722b09f325fc9584625.tar.gz iced-7def3ee38a3f0f24a331d722b09f325fc9584625.tar.bz2 iced-7def3ee38a3f0f24a331d722b09f325fc9584625.zip |
Fix `clippy` lints
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/src/multi_window/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/multi_window/state.rs b/runtime/src/multi_window/state.rs index 78c35e6c..05036a07 100644 --- a/runtime/src/multi_window/state.rs +++ b/runtime/src/multi_window/state.rs @@ -228,7 +228,7 @@ where match operation.finish() { operation::Outcome::None => {} operation::Outcome::Some(message) => { - self.queued_messages.push(message) + self.queued_messages.push(message); } operation::Outcome::Chain(next) => { current_operation = Some(next); |