From 821bc769273d67150e8b5e937b97ae10fd91983c Mon Sep 17 00:00:00 2001 From: Eugene Mutavchi Date: Sat, 26 Dec 2009 18:57:15 +0200 Subject: Fixed low bug EXT-573 (There is paragraph indent in the toasts text), added the suggested workaround: allow one less character in message. --HG-- branch : product-engine --- indra/newview/lltoastalertpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/lltoastalertpanel.cpp b/indra/newview/lltoastalertpanel.cpp index 8f296b3794..c3ccb9380b 100644 --- a/indra/newview/lltoastalertpanel.cpp +++ b/indra/newview/lltoastalertpanel.cpp @@ -279,7 +279,7 @@ LLToastAlertPanel::LLToastAlertPanel( LLNotificationPtr notification, bool modal mLineEditor->reshape(leditor_rect.getWidth(), leditor_rect.getHeight()); mLineEditor->setRect(leditor_rect); mLineEditor->setText(edit_text_contents); - mLineEditor->setMaxTextLength(STD_STRING_STR_LEN); + mLineEditor->setMaxTextLength(STD_STRING_STR_LEN - 1); // make sure all edit keys get handled properly (DEV-22396) mLineEditor->setHandleEditKeysDirectly(TRUE); -- cgit v1.2.3