diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-01-03 16:45:17 +0200 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2019-01-03 16:45:17 +0200 |
commit | 9a0f37670874a3289b31f0ba02342e85a1784447 (patch) | |
tree | 29b65439ffd170acf1c60d9bff7f3608715cca1c /indra/newview | |
parent | 76369c2463246227e297c6fee88a4de4e6d4ed67 (diff) |
SL-8963 Fixed Long name of region overlaps with next one on the World map
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llworldmapview.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llworldmapview.cpp b/indra/newview/llworldmapview.cpp index b88631a71b..f1c23bdb2d 100644 --- a/indra/newview/llworldmapview.cpp +++ b/indra/newview/llworldmapview.cpp @@ -465,7 +465,11 @@ void LLWorldMapView::draw() mesg, 0, llfloor(left + 3), llfloor(bottom + 2), LLColor4::white, - LLFontGL::LEFT, LLFontGL::BASELINE, LLFontGL::NORMAL, LLFontGL::DROP_SHADOW); + LLFontGL::LEFT, LLFontGL::BASELINE, LLFontGL::NORMAL, LLFontGL::DROP_SHADOW, + S32_MAX, //max_chars + sMapScale, //max_pixels + NULL, + TRUE); //use ellipses } } } |