summaryrefslogtreecommitdiffstats
path: root/core/src/widget
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:22:56 +0100
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2025-02-21 01:37:13 +0100
commit9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd (patch)
treedd8a9407058915c152ce6544ba20b75240ca85be /core/src/widget
parent28caeccf22d163e9014b5ed26334b6085683a28b (diff)
downloadiced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.gz
iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.tar.bz2
iced-9ceb467e6e12129b42d67a4a1ff3cb21bc7daadd.zip
Run `cargo fmt`
Diffstat (limited to 'core/src/widget')
-rw-r--r--core/src/widget/operation/focusable.rs4
-rw-r--r--core/src/widget/operation/text_input.rs4
2 files changed, 4 insertions, 4 deletions
diff --git a/core/src/widget/operation/focusable.rs b/core/src/widget/operation/focusable.rs
index a1327bc1..1ee41244 100644
--- a/core/src/widget/operation/focusable.rs
+++ b/core/src/widget/operation/focusable.rs
@@ -1,7 +1,7 @@
//! Operate on widgets that can be focused.
-use crate::widget::operation::{self, Operation, Outcome};
-use crate::widget::Id;
use crate::Rectangle;
+use crate::widget::Id;
+use crate::widget::operation::{self, Operation, Outcome};
/// The internal state of a widget that can be focused.
pub trait Focusable {
diff --git a/core/src/widget/operation/text_input.rs b/core/src/widget/operation/text_input.rs
index a46f1a2d..efb2a4d3 100644
--- a/core/src/widget/operation/text_input.rs
+++ b/core/src/widget/operation/text_input.rs
@@ -1,7 +1,7 @@
//! Operate on widgets that have text input.
-use crate::widget::operation::Operation;
-use crate::widget::Id;
use crate::Rectangle;
+use crate::widget::Id;
+use crate::widget::operation::Operation;
/// The internal state of a widget that has text input.
pub trait TextInput {