diff options
author | angela <angela@lindenlab.com> | 2009-11-16 20:46:40 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2009-11-16 20:46:40 +0800 |
commit | 1baf1d218644ac5dc00d9b41119a1ef168c709a2 (patch) | |
tree | 1ddea72957ea597b655c51d144bc83cfbb32d774 /indra/newview/lltoastimpanel.cpp | |
parent | 6b47e36b159a0e036beb442b82b1356aa756f152 (diff) |
fix chat format for /me
Diffstat (limited to 'indra/newview/lltoastimpanel.cpp')
-rw-r--r-- | indra/newview/lltoastimpanel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/lltoastimpanel.cpp b/indra/newview/lltoastimpanel.cpp index 1ea5f515b7..3acab85bf7 100644 --- a/indra/newview/lltoastimpanel.cpp +++ b/indra/newview/lltoastimpanel.cpp @@ -56,9 +56,9 @@ LLToastIMPanel::LLToastIMPanel(LLToastIMPanel::Params &p) : LLToastPanel(p.notif if (prefix == "/me " || prefix == "/me'") { mMessage->clear(); - style_params.font.style= "ITALIC"; + style_params.italic = true; mMessage->appendText(p.from + " ", FALSE, style_params); - style_params.font.style= "UNDERLINE"; + style_params.underline = true; mMessage->appendText(p.message.substr(3), FALSE, style_params); } else |