show phrase length in list

This commit is contained in:
🪞👃🪞 2024-10-14 11:26:58 +03:00
parent efdc135cae
commit ea88622081
2 changed files with 11 additions and 2 deletions

View file

@ -133,6 +133,12 @@ pub trait Layout<E: Engine>: Widget<Engine = E> + Sized {
fn align_center (self) -> Align<Self> {
Align::Center(self)
}
fn align_w (self) -> Align<Self> {
Align::W(self)
}
fn align_e (self) -> Align<Self> {
Align::E(self)
}
fn align_x (self) -> Align<Self> {
Align::X(self)
}