From 8ed62541af8cd16760b59d8f0a49d619d78f592e Mon Sep 17 00:00:00 2001 From: Richard Custodio Date: Mon, 18 Mar 2024 18:24:57 -0300 Subject: fix: run `cargo fmt` --- examples/integration/src/controls.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'examples/integration') diff --git a/examples/integration/src/controls.rs b/examples/integration/src/controls.rs index 5359d54f..1958b2f3 100644 --- a/examples/integration/src/controls.rs +++ b/examples/integration/src/controls.rs @@ -78,9 +78,7 @@ impl Program for Controls { container( column![ text("Background color").color(Color::WHITE), - text!("{background_color:?}") - .size(14) - .color(Color::WHITE), + text!("{background_color:?}").size(14).color(Color::WHITE), text_input("Placeholder", &self.input) .on_input(Message::InputChanged), sliders, -- cgit