diff --git a/src/widgets.rs b/src/widgets.rs index 6b82c95..7ccd91e 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -11,7 +11,11 @@ pub fn spawn_cutter_machine_ui(mut commands: Commands) { machine_ui_base(), children![ ( - Node::default(), // TODO: A real node with stuff in it (buttons, maybe?) + // TODO: A real node with stuff in it (buttons, maybe?) + Node { + grid_column: GridPlacement::start_span(2, 3), + ..default() + }, BackgroundColor(RED.into()), Pickable::default() ),