File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ pub struct Label {
26
26
wrap_mode : Option < TextWrapMode > ,
27
27
sense : Option < Sense > ,
28
28
selectable : Option < bool > ,
29
+ halign : Option < Align > ,
29
30
}
30
31
31
32
impl Label {
@@ -35,6 +36,7 @@ impl Label {
35
36
wrap_mode : None ,
36
37
sense : None ,
37
38
selectable : None ,
39
+ halign : None ,
38
40
}
39
41
}
40
42
@@ -76,6 +78,13 @@ impl Label {
76
78
self
77
79
}
78
80
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
+
79
88
/// Can the user select the text with the mouse?
80
89
///
81
90
/// Overrides [`crate::style::Interaction::selectable_labels`].
@@ -211,7 +220,7 @@ impl Label {
211
220
layout_job. halign = Align :: LEFT ;
212
221
layout_job. justify = false ;
213
222
} else {
214
- layout_job. halign = ui. layout ( ) . horizontal_placement ( ) ;
223
+ layout_job. halign = self . halign . unwrap_or ( ui. layout ( ) . horizontal_placement ( ) ) ;
215
224
layout_job. justify = ui. layout ( ) . horizontal_justify ( ) ;
216
225
} ;
217
226
You can’t perform that action at this time.
0 commit comments