diff --git a/crates/eframe/src/native/run.rs b/crates/eframe/src/native/run.rs index 61585f9bb4a..109be51c0c2 100644 --- a/crates/eframe/src/native/run.rs +++ b/crates/eframe/src/native/run.rs @@ -161,17 +161,11 @@ impl WinitAppWrapper { if let Some(window) = self.winit_app.window(*window_id) { log::trace!("request_redraw for {window_id:?}"); - let is_minimized = window.is_minimized().unwrap_or(false); - if is_minimized { - false - } else { - window.request_redraw(); - true - } + window.request_redraw(); } else { log::trace!("No window found for {window_id:?}"); - false } + false }); if let Some(next_repaint_time) = next_repaint_time { @@ -282,7 +276,6 @@ impl ApplicationHandler for WinitAppWrapper { event_loop_context::with_event_loop_context(event_loop, move || { let event_result = match event { winit::event::WindowEvent::RedrawRequested => { - self.windows_next_repaint_times.remove(&window_id); self.winit_app.run_ui_and_paint(event_loop, window_id) } _ => self.winit_app.window_event(event_loop, window_id, event), diff --git a/crates/epaint/src/shadow.rs b/crates/epaint/src/shadow.rs index ea6454f99cf..bb386d21dc7 100644 --- a/crates/epaint/src/shadow.rs +++ b/crates/epaint/src/shadow.rs @@ -11,7 +11,7 @@ pub struct Shadow { /// Move the shadow by this much. /// /// For instance, a value of `[1.0, 2.0]` will move the shadow 1 point to the right and 2 points down, - /// causing a drop-shadow effet. + /// causing a drop-shadow effect. pub offset: Vec2, /// The width of the blur, i.e. the width of the fuzzy penumbra.