From ebefa28103fb0e7dec9999c166fa96773eaa3e60 Mon Sep 17 00:00:00 2001 From: robtfm <50659922+robtfm@users.noreply.github.com> Date: Wed, 1 Jul 2026 19:15:31 +0100 Subject: [PATCH] default text wrap false --- proto/decentraland/sdk/components/ui_text.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/decentraland/sdk/components/ui_text.proto b/proto/decentraland/sdk/components/ui_text.proto index 9e5bb5fb..6dc0e9f7 100644 --- a/proto/decentraland/sdk/components/ui_text.proto +++ b/proto/decentraland/sdk/components/ui_text.proto @@ -22,5 +22,5 @@ message PBUiText { optional common.TextAlignMode text_align = 3; // alignment within the bounds (default: center) optional common.Font font = 4; // font for the text (default: sans-serif) optional int32 font_size = 5; // size of the text (default: 10) - optional TextWrap text_wrap = 6; // wrap text when the border is reached (default: TW_WRAP) + optional TextWrap text_wrap = 6; // wrap text when the border is reached (default: TW_NO_WRAP) }