Skip to content

Commit c136dbd

Browse files
ickshonpemyreprise1
authored andcommitted
Changes in the size of a text node should trigger recomputation of its text (bevyengine#7674)
# Objective The text contained by a text node is only recomputed when its `Style` or `Text` components change, or when the scale factor changes. Not when the geometry of the text node is modified. Make it so that any change in text node size triggers a text recomputation. ## Solution Change `text_system` so that it queries for text nodes with changed `Node` components and recomputes their text. --- Most users won't notice any difference but it should fix some confusing edge cases in more complicated and interactive layouts. ## Changelog * Added `Changed<Node>` to the change detection query of `text_system`. This ensures that any change in the size of a text node will cause any text it contains to be recomputed.
1 parent 357be32 commit c136dbd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_ui/src/widget/text.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::{CalculatedSize, Style, UiScale, Val};
1+
use crate::{CalculatedSize, Node, Style, UiScale, Val};
22
use bevy_asset::Assets;
33
use bevy_ecs::{
44
entity::Entity,
@@ -54,7 +54,7 @@ pub fn text_system(
5454
mut font_atlas_set_storage: ResMut<Assets<FontAtlasSet>>,
5555
mut text_pipeline: ResMut<TextPipeline>,
5656
mut text_queries: ParamSet<(
57-
Query<Entity, Or<(Changed<Text>, Changed<Style>)>>,
57+
Query<Entity, Or<(Changed<Text>, Changed<Node>, Changed<Style>)>>,
5858
Query<Entity, (With<Text>, With<Style>)>,
5959
Query<(
6060
&Text,

0 commit comments

Comments
 (0)