mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
[grid] Make striped slightly wider than contents
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user