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 missing redraw upon resetting blueprint #5262

Merged
merged 2 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions crates/re_viewer/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ impl App {
// at the beginning of the next frame.
re_log::debug!("Reset blueprint");
store_hub.clear_current_blueprint();
egui_ctx.request_repaint(); // Many changes take a frame delay to show up.
}
SystemCommand::UpdateBlueprint(blueprint_id, updates) => {
// We only want to update the blueprint if the "inspect blueprint timeline" mode is
Expand Down
2 changes: 1 addition & 1 deletion examples/python/rrt-star/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "RRT*"
tags = ["2D"]
description = "Visualization of the path finding algorithm RRT* in a simple environment."
thumbnail= "https://static.rerun.io/rrt-star/4d4684a24eab7d5def5768b7c1685d8b1cb2c010/full.png"
thumbnail_dimensions = [480, 360]
thumbnail_dimensions = [1496, 840]
-->

<picture>
Expand Down
Loading