Skip to content

Commit

Permalink
Grid: set the sizing_pass flag during the initial sizing pass (#4612
Browse files Browse the repository at this point in the history
)

* Part of #4535

This should improve the auto-sizing of columns when nesting expanding
widgets (e.g. `Separator`), or centered or justified layouts.
  • Loading branch information
emilk authored Jun 5, 2024
1 parent a287921 commit a50f253
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/egui/src/grid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,10 @@ impl Grid {
// which we do here:
let max_rect = ui.cursor().intersect(ui.max_rect());
ui.allocate_ui_at_rect(max_rect, |ui| {
ui.set_visible(prev_state.is_some()); // Avoid visible first-frame jitter
if prev_state.is_none() {
// Hide the ui this frame, and make things as narrow as possible.
ui.set_sizing_pass();
}
ui.horizontal(|ui| {
let is_color = color_picker.is_some();
let mut grid = GridLayout {
Expand Down

0 comments on commit a50f253

Please sign in to comment.