Skip to content

Commit

Permalink
Remove UI debug print (#521)
Browse files Browse the repository at this point in the history
  • Loading branch information
memoryruins committed Sep 20, 2020
1 parent ba5af4d commit 924afc3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/bevy_ui/src/widget/text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ pub fn text_system(
// add queued glyphs to atlases
if !queued_text_glyphs.glyphs.is_empty() {
let mut glyphs_to_queue = Vec::new();
println!("queue {}", queued_text_glyphs.glyphs.len());
for (font_handle, FloatOrd(font_size), character) in queued_text_glyphs.glyphs.drain() {
let font_atlases = font_atlas_sets
.get_or_insert_with(Handle::from_id(font_handle.id), || {
Expand Down

0 comments on commit 924afc3

Please sign in to comment.