cargo fmt

This commit is contained in:
dbr 2021-02-20 20:21:26 +11:00
parent 68867ea580
commit 6bf75335ed

View File

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