Skip to content

Commit

Permalink
Fix repaint corner cases
Browse files Browse the repository at this point in the history
  • Loading branch information
mvlabat committed Jul 28, 2024
1 parent 47768b1 commit d9995d2
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
13 changes: 9 additions & 4 deletions examples/side_panel.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use bevy::{prelude::*, window::PrimaryWindow};
use bevy::winit::WinitSettings;
use bevy::{prelude::*, window::PrimaryWindow, winit::WinitSettings};
use bevy_egui::{EguiContexts, EguiPlugin};

#[derive(Default, Resource)]
Expand Down Expand Up @@ -38,10 +37,16 @@ fn ui_example_system(
.resizable(true)
.show(ctx, |ui| {
ui.label("Left resizeable panel");
if ui.add(egui::widgets::Button::new("A button").selected(!*is_last_selected)).clicked() {
if ui
.add(egui::widgets::Button::new("A button").selected(!*is_last_selected))
.clicked()
{
*is_last_selected = false;
}
if ui.add(egui::widgets::Button::new("Another button").selected(*is_last_selected)).clicked() {
if ui
.add(egui::widgets::Button::new("Another button").selected(*is_last_selected))
.clicked()
{
*is_last_selected = true;
}
ui.allocate_rect(ui.available_rect_before_wrap(), egui::Sense::hover());
Expand Down
21 changes: 19 additions & 2 deletions src/systems.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ use bevy::{
ButtonState,
},
log,
prelude::{Entity, EventReader, Query, Resource, Time},
prelude::{Entity, EventReader, NonSend, Query, Resource, Time},
time::Real,
window::{CursorMoved, RequestRedraw},
winit::{EventLoopProxy, WakeUp},
};
use std::marker::PhantomData;
use std::{marker::PhantomData, time::Duration};

#[allow(missing_docs)]
#[derive(SystemParam)]
Expand Down Expand Up @@ -474,6 +475,7 @@ pub fn process_output_system(
mut egui_clipboard: bevy::ecs::system::ResMut<crate::EguiClipboard>,
mut event: EventWriter<RequestRedraw>,
#[cfg(windows)] mut last_cursor_icon: Local<bevy::utils::HashMap<Entity, egui::CursorIcon>>,
event_loop_proxy: Option<NonSend<EventLoopProxy<WakeUp>>>,
) {
let mut should_request_redraw = false;

Expand Down Expand Up @@ -522,6 +524,21 @@ pub fn process_output_system(
let needs_repaint = !context.render_output.is_empty();
should_request_redraw |= ctx.has_requested_repaint() && needs_repaint;

// The resource doesn't exist in the headless mode.
if let Some(event_loop_proxy) = &event_loop_proxy {
// A zero duration indicates that it's an outstanding redraw request, which gives Egui an
// opportunity to settle the effects of interactions with widgets. Such repaint requests
// are processed not immediately but on a next frame. In this case, we need to indicate to
// winit, that it needs to wake up next frame as well even if there are no inputs.
//
// TLDR: this solves repaint corner cases of `WinitSettings::desktop_app()`.
if let Some(Duration::ZERO) =
ctx.viewport(|viewport| viewport.input.wants_repaint_after())
{
let _ = event_loop_proxy.send_event(WakeUp);
}
}

#[cfg(feature = "open_url")]
if let Some(egui::output::OpenUrl { url, new_tab }) = platform_output.open_url {
let target = if new_tab {
Expand Down

0 comments on commit d9995d2

Please sign in to comment.