From e13e2594363b08b28937a7f0beb3526192246517 Mon Sep 17 00:00:00 2001 From: atlv Date: Mon, 14 Jul 2025 16:55:42 -0400 Subject: [PATCH] Fix core widgets unconditionally enabling bevy_ui_picking_backend (#20055) # Objective - Fixes #19742 ## Solution - Initially I made it an optional feature on bevy_core_widgets and piped it through to bevy_internal, but then I realized that its not actually directly reference in the crate so its safe to just remove it. --- crates/bevy_core_widgets/Cargo.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/bevy_core_widgets/Cargo.toml b/crates/bevy_core_widgets/Cargo.toml index 186b2ec820..01da19ae7c 100644 --- a/crates/bevy_core_widgets/Cargo.toml +++ b/crates/bevy_core_widgets/Cargo.toml @@ -18,9 +18,7 @@ bevy_input_focus = { path = "../bevy_input_focus", version = "0.17.0-dev" } bevy_log = { path = "../bevy_log", version = "0.17.0-dev" } bevy_math = { path = "../bevy_math", version = "0.17.0-dev" } bevy_picking = { path = "../bevy_picking", version = "0.17.0-dev" } -bevy_ui = { path = "../bevy_ui", version = "0.17.0-dev", features = [ - "bevy_ui_picking_backend", -] } +bevy_ui = { path = "../bevy_ui", version = "0.17.0-dev" } # other accesskit = "0.19"