Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Context::repaint_causes returning no causes #4248

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions crates/egui/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ struct ViewportState {
}

/// What called [`Context::request_repaint`]?
#[derive(Clone, Debug)]
#[derive(Clone)]
pub struct RepaintCause {
/// What file had the call that requested the repaint?
pub file: &'static str,
Expand All @@ -261,6 +261,12 @@ pub struct RepaintCause {
pub line: u32,
}

impl std::fmt::Debug for RepaintCause {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}:{}", self.file, self.line)
}
}

impl RepaintCause {
/// Capture the file and line number of the call site.
#[allow(clippy::new_without_default)]
Expand Down Expand Up @@ -1465,7 +1471,7 @@ impl Context {
self.read(|ctx| {
ctx.viewports
.get(&ctx.viewport_id())
.map(|v| v.repaint.causes.clone())
.map(|v| v.repaint.prev_causes.clone())
})
.unwrap_or_default()
}
Expand Down
Loading