From 9fb374059a6a9055a2546c830551c83ab9398a41 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Tue, 26 Aug 2025 13:17:38 -0500 Subject: [PATCH] Fix: Delete trailing semicolon in BRB::bundle() Normally this would be a compilation error, but Bevy has an `impl Bundle for ()` somewhere. The intended bundle content gets discarded and a unit is implicitly returned. That unit is implicitly converted into a `Bundle`, satisfying the compiler. --- src/widgets/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/mod.rs b/src/widgets/mod.rs index 6b0a74a..e0728fa 100644 --- a/src/widgets/mod.rs +++ b/src/widgets/mod.rs @@ -120,7 +120,7 @@ impl BigRedButton { TextColor(WHITE.into()), TextShadow::default(), ], - ); + ) } /// Re-color the button when a pointer passes over it