fix: run cargo fmt

This commit is contained in:
Richard Custodio 2024-03-18 18:24:57 -03:00
parent db7d8680ce
commit 8ed62541af
No known key found for this signature in database
GPG key ID: 95F51F46E2C6E8D7
5 changed files with 11 additions and 25 deletions

View file

@ -52,11 +52,7 @@ impl VectorialText {
fn view(&self) -> Element<Message> {
let slider_with_label = |label, range, value, message: fn(f32) -> _| {
column![
row![
text(label),
horizontal_space(),
text!("{:.2}", value)
],
row![text(label), horizontal_space(), text!("{:.2}", value)],
slider(range, value, message).step(0.01)
]
.spacing(2)