Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Feb 15, 2024
1 parent 14abad2 commit 4c81b48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion crates/bevy_ui/src/layout/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
mod convert;
pub mod debug;

use crate::{
ContentSize, DefaultUiCamera, Measure, Node, NodeMeasure, Outline, Style, TargetCamera, UiScale,
};
use bevy_ecs::entity::EntityHashMap;
use crate::{ContentSize, DefaultUiCamera, Measure, Node, NodeMeasure, Outline, Style, TargetCamera, UiScale};
use bevy_ecs::{
change_detection::{DetectChanges, DetectChangesMut},
entity::Entity,
Expand Down
4 changes: 3 additions & 1 deletion crates/bevy_ui/src/widget/image.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use crate::{measurement::AvailableSpace, ContentSize, Measure, Node, NodeMeasure, UiImage, UiScale};
use crate::{
measurement::AvailableSpace, ContentSize, Measure, Node, NodeMeasure, UiImage, UiScale,
};
use bevy_asset::Assets;
use bevy_ecs::prelude::*;
use bevy_math::Vec2;
Expand Down

0 comments on commit 4c81b48

Please sign in to comment.