diff options
author | 2024-08-08 01:37:51 +0200 | |
---|---|---|
committer | 2024-08-08 01:37:51 +0200 | |
commit | 1c8850023f2bdeae02ec061a49aa76dbb91262ad (patch) | |
tree | 38ca9c054e92626b53add458cd62b90377e5135e /runtime/src/program/state.rs | |
parent | d5ffe98ce939990e6c8ef6f40895cd1f9633fe18 (diff) | |
parent | 0ce81a0e0e237a162dec3c1ed90c4675192d4040 (diff) | |
download | iced-1c8850023f2bdeae02ec061a49aa76dbb91262ad.tar.gz iced-1c8850023f2bdeae02ec061a49aa76dbb91262ad.tar.bz2 iced-1c8850023f2bdeae02ec061a49aa76dbb91262ad.zip |
Merge pull request #2544 from iced-rs/display-hover-when-focused
Display top contents in `hover` widget when focused
Diffstat (limited to 'runtime/src/program/state.rs')
-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 e51ad0cb..c377814a 100644 --- a/runtime/src/program/state.rs +++ b/runtime/src/program/state.rs @@ -178,7 +178,7 @@ where pub fn operate( &mut self, renderer: &mut P::Renderer, - operations: impl Iterator<Item = Box<dyn Operation<()>>>, + operations: impl Iterator<Item = Box<dyn Operation>>, bounds: Size, debug: &mut Debug, ) { |