Skip to content

Commit 8f4a5bc

Browse files
rustbasicemilk
authored andcommitted
Add Label::halign (emilk#4975)
Function to specify `Align` to `Label` There are cases where you want to display `Label` on the left or right regardless of other `Layout` specifications. Before : Note the part showing the rust source code. ![20240818-1](https://github.com/user-attachments/assets/a08f7594-1ec1-4c6a-b96d-1a5f735d02c1) After : Note the part showing the rust source code. ![20240818-2](https://github.com/user-attachments/assets/807ff9cf-f8cd-4415-9c78-b62869d1696d) --------- Co-authored-by: Emil Ernerfeldt <emil.ernerfeldt@gmail.com>
1 parent 85af72c commit 8f4a5bc

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

crates/egui/src/widgets/label.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub struct Label {
2626
wrap_mode: Option<TextWrapMode>,
2727
sense: Option<Sense>,
2828
selectable: Option<bool>,
29+
halign: Option<Align>,
2930
}
3031

3132
impl Label {
@@ -35,6 +36,7 @@ impl Label {
3536
wrap_mode: None,
3637
sense: None,
3738
selectable: None,
39+
halign: None,
3840
}
3941
}
4042

@@ -76,6 +78,13 @@ impl Label {
7678
self
7779
}
7880

81+
/// Sets the horizontal alignment of the Label to the given `Align` value.
82+
#[inline]
83+
pub fn halign(mut self, align: Align) -> Self {
84+
self.halign = Some(align);
85+
self
86+
}
87+
7988
/// Can the user select the text with the mouse?
8089
///
8190
/// Overrides [`crate::style::Interaction::selectable_labels`].
@@ -211,7 +220,7 @@ impl Label {
211220
layout_job.halign = Align::LEFT;
212221
layout_job.justify = false;
213222
} else {
214-
layout_job.halign = ui.layout().horizontal_placement();
223+
layout_job.halign = self.halign.unwrap_or(ui.layout().horizontal_placement());
215224
layout_job.justify = ui.layout().horizontal_justify();
216225
};
217226

0 commit comments

Comments
 (0)