From ca46d7c357882d3871617fb13c1f8c85dafd59b6 Mon Sep 17 00:00:00 2001 From: ickshonpe Date: Wed, 13 Sep 2023 20:24:24 +0100 Subject: [PATCH] Add missing `bevy_text` feature attribute to `TextBundle` from impl (#9785) # Objective Add the `bevy_text` feature attribute to the `TextBundle` from impl in node_bundle.rs. --- crates/bevy_ui/src/node_bundles.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bevy_ui/src/node_bundles.rs b/crates/bevy_ui/src/node_bundles.rs index 6a9a291090..7488d5dc41 100644 --- a/crates/bevy_ui/src/node_bundles.rs +++ b/crates/bevy_ui/src/node_bundles.rs @@ -268,6 +268,7 @@ impl TextBundle { } } +#[cfg(feature = "bevy_text")] impl From for TextBundle where I: Into,