diff options
author | 2024-04-25 23:19:39 +0200 | |
---|---|---|
committer | 2024-04-25 23:19:39 +0200 | |
commit | 2d01d55cbc62601c640f2e55d8a8ddb5d63de1af (patch) | |
tree | 6a2a9339b2bc536fc71d3def15446b667110ca19 /runtime/src/program | |
parent | 5ef593ce53e0ba53d51809f198a02743f87a6ccd (diff) | |
parent | 4fc342c97963a7a7e7983604b9399fccf017aa53 (diff) | |
download | iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.gz iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.tar.bz2 iced-2d01d55cbc62601c640f2e55d8a8ddb5d63de1af.zip |
Merge pull request #2405 from iced-rs/feature/stack-widget
`Stack` widget
Diffstat (limited to 'runtime/src/program')
-rw-r--r-- | runtime/src/program/state.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/src/program/state.rs b/runtime/src/program/state.rs index d685b07c..c6589c22 100644 --- a/runtime/src/program/state.rs +++ b/runtime/src/program/state.rs @@ -47,7 +47,7 @@ where cache, queued_events: Vec::new(), queued_messages: Vec::new(), - mouse_interaction: mouse::Interaction::Idle, + mouse_interaction: mouse::Interaction::None, } } |