Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NoWrap Text feature #8947

Merged
merged 14 commits into from
Jun 26, 2023
Prev Previous commit
Next Next commit
Merge branch 'main' into text-wrap-override
  • Loading branch information
ickshonpe committed Jun 24, 2023
commit ae48806bfb01c2e7916160f43e5497419d5c3164
4 changes: 2 additions & 2 deletions crates/bevy_ui/src/node_bundles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ use bevy_render::{
prelude::{Color, ComputedVisibility},
view::Visibility,
};
use bevy_text::BreakLineOn;
use bevy_sprite::TextureAtlas;
#[cfg(feature = "bevy_text")]
use bevy_text::{Text, TextAlignment, TextLayoutInfo, TextSection, TextStyle};
use bevy_text::{BreakLineOn, Text, TextAlignment, TextLayoutInfo, TextSection, TextStyle};
use bevy_transform::prelude::{GlobalTransform, Transform};

/// The basic UI node
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.