cargo fmt

This commit is contained in:
dbr 2021-02-25 21:03:52 +11:00
parent c104e7f104
commit d98e004454

View File

@ -324,12 +324,7 @@ impl<'ui> DrawListMut<'ui> {
/// .build(); /// .build();
/// } /// }
/// ``` /// ```
pub fn add_image( pub fn add_image(&'ui self, texture_id: TextureId, p_min: [f32; 2], p_max: [f32; 2]) -> Image {
&'ui self,
texture_id: TextureId,
p_min: [f32; 2],
p_max: [f32; 2],
) -> Image {
Image::new(self, texture_id, p_min, p_max) Image::new(self, texture_id, p_min, p_max)
} }