summaryrefslogtreecommitdiff
path: root/indra/newview/lltoastimpanel.cpp
diff options
context:
space:
mode:
authorangela <angela@lindenlab.com>2009-11-16 20:46:40 +0800
committerangela <angela@lindenlab.com>2009-11-16 20:46:40 +0800
commit1baf1d218644ac5dc00d9b41119a1ef168c709a2 (patch)
tree1ddea72957ea597b655c51d144bc83cfbb32d774 /indra/newview/lltoastimpanel.cpp
parent6b47e36b159a0e036beb442b82b1356aa756f152 (diff)
fix chat format for /me
Diffstat (limited to 'indra/newview/lltoastimpanel.cpp')
-rw-r--r--indra/newview/lltoastimpanel.cpp4
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