From 97bcca04002d9d7c4812e178d30fb12358fad72c Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Tue, 22 Oct 2024 00:25:30 +0200 Subject: Remove `TODO` about reactive rendering in `iced_winit` --- winit/src/program.rs | 5 ----- 1 file changed, 5 deletions(-) (limited to 'winit') diff --git a/winit/src/program.rs b/winit/src/program.rs index 2ac7ad0d..f15e5be5 100644 --- a/winit/src/program.rs +++ b/winit/src/program.rs @@ -824,11 +824,6 @@ async fn run_instance( continue; }; - // TODO: Avoid redrawing all the time by forcing widgets to - // request redraws on state changes - // - // Then, we can use the `interface_state` here to decide if a redraw - // is needed right away, or simply wait until a specific time. let redraw_event = core::Event::Window( window::Event::RedrawRequested(Instant::now()), ); -- cgit