Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
odecay committed Aug 11, 2022
1 parent 9cce92a commit 9e1cfc7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/loading/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,17 @@ macro_rules! impl_default_load_progress {
)*
};
}
impl_default_load_progress!(String, f32, usize, u32, Vec2, Vec3, UVec2, egui::TextureId, bool);
impl_default_load_progress!(
String,
f32,
usize,
u32,
Vec2,
Vec3,
UVec2,
egui::TextureId,
bool
);

// Implement `HasLoadProgress` for container types
impl<T: HasLoadProgress> HasLoadProgress for Option<T> {
Expand Down

0 comments on commit 9e1cfc7

Please sign in to comment.