From af946556c32c99d77b7fd4a40f3ca8d6c5872771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C3=B6lfchen?= <115360611+W-lfchen@users.noreply.github.com> Date: Thu, 5 Sep 2024 22:23:07 +0200 Subject: [PATCH] style: formatting --- crates/eww/src/widgets/build_widget.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/eww/src/widgets/build_widget.rs b/crates/eww/src/widgets/build_widget.rs index 04c21483..ea49f407 100644 --- a/crates/eww/src/widgets/build_widget.rs +++ b/crates/eww/src/widgets/build_widget.rs @@ -324,8 +324,12 @@ fn build_children_special_widget( )?; } else { for child in &custom_widget_invocation.children { - let scope = - tree.register_new_scope(String::from("child"), Some(custom_widget_invocation.scope), calling_scope, HashMap::new())?; + let scope = tree.register_new_scope( + String::from("child"), + Some(custom_widget_invocation.scope), + calling_scope, + HashMap::new(), + )?; let child_widget = build_gtk_widget(tree, widget_defs.clone(), scope, child.clone(), None)?; gtk_container.add(&child_widget); }