From d9758c695974341abd9f0631a57903bb72fb0574 Mon Sep 17 00:00:00 2001 From: Kakurady (Geneko Nemeth) Date: Mon, 16 Nov 2009 14:25:07 -0500 Subject: Use solid circles instead of asterisks for password fields. --- linden/indra/llui/lllineeditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linden/indra/llui/lllineeditor.cpp b/linden/indra/llui/lllineeditor.cpp index e5e193f..c574814 100644 --- a/linden/indra/llui/lllineeditor.cpp +++ b/linden/indra/llui/lllineeditor.cpp @@ -351,7 +351,7 @@ void LLLineEditor::setCursorAtLocalPos( S32 local_mouse_x ) { for (S32 i = 0; i < mText.length(); i++) { - asterix_text += '*'; + asterix_text += (llwchar) 0x2022L; } wtext = asterix_text.c_str(); } @@ -1484,7 +1484,7 @@ void LLLineEditor::draw() std::string text; for (S32 i = 0; i < mText.length(); i++) { - text += '*'; + text += "\xe2\x80\xa2"; } mText = text; } -- cgit v1.1