From 2b7f0c55e1be60168c581f48d3ec19d17f6c6b9a Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 28 Jun 2024 11:11:13 -0400 Subject: [PATCH] cleanup: cargo fmt --- src/widget/text_input/input.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/widget/text_input/input.rs b/src/widget/text_input/input.rs index d4722f20..bd0a3152 100644 --- a/src/widget/text_input/input.rs +++ b/src/widget/text_input/input.rs @@ -2434,7 +2434,12 @@ struct Focus { impl State { /// Creates a new [`State`], representing an unfocused [`TextInput`]. - pub fn new(is_secure: bool, is_read_only: bool, always_active: bool, select_on_focus: bool) -> Self { + pub fn new( + is_secure: bool, + is_read_only: bool, + always_active: bool, + select_on_focus: bool, + ) -> Self { Self { is_secure, is_read_only,