From 65ed1aa0cd54451d5208baf26b571f2a22d8e6ee Mon Sep 17 00:00:00 2001 From: jprochazk Date: Tue, 17 Dec 2024 15:22:13 +0100 Subject: [PATCH] random sized --- crates/viewer/re_ui/examples/re_ui_example/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/viewer/re_ui/examples/re_ui_example/main.rs b/crates/viewer/re_ui/examples/re_ui_example/main.rs index 6e180ba0b23f..2a6b7cfe66c2 100644 --- a/crates/viewer/re_ui/examples/re_ui_example/main.rs +++ b/crates/viewer/re_ui/examples/re_ui_example/main.rs @@ -170,16 +170,16 @@ impl eframe::App for ExampleApp { } if ui.button("Log warn").clicked() { re_log::warn!( - "A lot of text on warn level.\nA lot of text in fact. So \ - much that we should ideally be auto-wrapping it at some point, much \ - earlier than this." + "A lot of text on warn level.\nA lot of text in fact." ); } if ui.button("Log error").clicked() { re_log::error!( "A lot of text on error level.\nA lot of text in fact. \ So much that we should ideally be auto-wrapping it at some point, much \ - earlier than this." + earlier than this. Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. \ + Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. Lorem ipsum sit dolor amet. \ + Lorem ipsum sit dolor amet." ); } });