diff --git a/egui/src/grid.rs b/egui/src/grid.rs index ae22a6b8..7b572dec 100644 --- a/egui/src/grid.rs +++ b/egui/src/grid.rs @@ -132,6 +132,7 @@ impl GridLayout { let size = Vec2::new(self.prev_state.full_width(self.spacing.x), height); let rect = Rect::from_min_size(*cursor, size); let rect = rect.expand2(0.5 * self.spacing.y * Vec2::Y); + let rect = rect.expand2(2.0 * Vec2::X); // HACK: just looks better with some spacing on the sides let color = Rgba::from_white_alpha(0.0075); // let color = Rgba::from_black_alpha(0.2); painter.rect_filled(rect, 2.0, color);