cargo fmt

Piotr Osiewicz created

Change summary

crates/gpui2/src/element.rs     | 6 +-----
crates/gpui2/src/scene.rs       | 2 --
crates/gpui2/src/taffy.rs       | 3 +--
crates/gpui2/src/text_system.rs | 5 +----
4 files changed, 3 insertions(+), 13 deletions(-)

Detailed changes

crates/gpui2/src/element.rs 🔗

@@ -193,11 +193,7 @@ impl<C: RenderOnce> Element for Component<C> {
                 ((), element_state)
             });
         } else {
-            element.paint(
-                bounds,
-                state.rendered_element_state.as_mut().unwrap(),
-                cx,
-            );
+            element.paint(bounds, state.rendered_element_state.as_mut().unwrap(), cx);
         }
     }
 }

crates/gpui2/src/scene.rs 🔗

@@ -27,8 +27,6 @@ pub(crate) struct SceneBuilder {
     surfaces: Vec<Surface>,
 }
 
-
-
 impl SceneBuilder {
     pub fn build(&mut self) -> Scene {
         let mut orders = vec![0; self.layers_by_order.len()];

crates/gpui2/src/taffy.rs 🔗

@@ -29,8 +29,7 @@ pub struct TaffyLayoutEngine {
     >,
 }
 
-static EXPECT_MESSAGE: &str =
-    "we should avoid taffy layout errors by construction if possible";
+static EXPECT_MESSAGE: &str = "we should avoid taffy layout errors by construction if possible";
 
 impl TaffyLayoutEngine {
     pub fn new() -> Self {

crates/gpui2/src/text_system.rs 🔗

@@ -438,8 +438,7 @@ impl FontWeight {
 }
 
 /// Allows italic or oblique faces to be selected.
-#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash)]
-#[derive(Default)]
+#[derive(Clone, Copy, Eq, PartialEq, Debug, Hash, Default)]
 pub enum FontStyle {
     /// A face that is neither italic not obliqued.
     #[default]
@@ -450,8 +449,6 @@ pub enum FontStyle {
     Oblique,
 }
 
-
-
 impl Display for FontStyle {
     fn fmt(&self, f: &mut Formatter) -> fmt::Result {
         Debug::fmt(self, f)