🚧 Code tweaks

This commit is contained in:
Manuel Cillero 2024-04-29 00:00:42 +02:00
parent b5fc06e84e
commit 928b3f91b6
6 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ impl ComponentTrait for Block {
fn setup_before_prepare(&mut self, _cx: &mut Context) {
self.alter_classes(
ClassesOp::Prepend,
[String::from("block__container"), self.style().to_string()].join(" "),
["block__container".to_string(), self.style().to_string()].join(" "),
);
}

View file

@ -37,7 +37,7 @@ impl ComponentTrait for Button {
self.alter_classes(
ClassesOp::Prepend,
[
String::from("button__tap"),
"button__tap".to_string(),
self.style().to_string(),
self.font_size().to_string(),
]

View file

@ -38,7 +38,7 @@ impl ComponentTrait for Container {
self.alter_classes(
ClassesOp::Prepend,
[
String::from("flex__container"),
"flex__container".to_string(),
self.direction().to_string(),
self.wrap().to_string(),
self.justify().to_string(),

View file

@ -36,7 +36,7 @@ impl ComponentTrait for Item {
self.alter_classes(
ClassesOp::Prepend,
[
String::from("flex__item"),
"flex__item".to_string(),
self.grow().to_string(),
self.shrink().to_string(),
self.size().to_string(),

View file

@ -41,7 +41,7 @@ impl ComponentTrait for ActionButton {
self.alter_classes(
ClassesOp::Prepend,
[
String::from("button__tap"),
"button__tap".to_string(),
self.style().to_string(),
self.font_size().to_string(),
]

View file

@ -59,7 +59,7 @@ impl TypeInfo {
.get(if start >= 0 {
start as usize
} else {
segments.len() - start.abs() as usize
segments.len() - start.unsigned_abs()
})
.map_or(0, |&(s, _)| s);
@ -69,7 +69,7 @@ impl TypeInfo {
if end >= 0 {
end as usize
} else {
segments.len() - end.abs() as usize
segments.len() - end.unsigned_abs()
}
} else {
segments.len() - 1