From 1a033ac319f6d8625b797943cf2adac21ccbc39e Mon Sep 17 00:00:00 2001 From: Hecklezz Date: Wed, 2 Sep 2026 23:45:02 +1000 Subject: Fix LLInlineViewSegment::getNumChars not accounting for padding --- indra/llui/lltextbase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'indra/llui/lltextbase.cpp') diff --git a/indra/llui/lltextbase.cpp b/indra/llui/lltextbase.cpp index 06645df203..f0c3c97ef9 100644 --- a/indra/llui/lltextbase.cpp +++ b/indra/llui/lltextbase.cpp @@ -4151,7 +4151,7 @@ S32 LLInlineViewSegment::getNumChars(S32 num_pixels, S32 segment_offset, S32 lin { return 0; } - else if (line_offset != 0 && num_pixels < mView->getRect().getWidth()) + else if (line_offset != 0 && num_pixels < (mLeftPad + mRightPad + mView->getRect().getWidth())) { return 0; } -- cgit v1.3