Open
Description
Describe the bug
Creating a LayoutJob
as follows is still causing the text to be centered in the Label:
let mut layout_job = LayoutJob::simple("Simple layout".to_string(), FontId::default(), Color32::GREEN, 100.0);
layout_job.halign = Align::LEFT;
ui.add(vec2(500.0, 15.0), Label::new(layout_job);
Expected behavior
The text should be aligned left.