summaryrefslogtreecommitdiff
path: root/indra/newview/llimfloater.cpp
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2009-11-18 14:29:01 -0800
committerJames Cook <james@lindenlab.com>2009-11-18 14:29:01 -0800
commit203490e2a0915c5ce59ccacba420388327f9143b (patch)
tree3cad820c81082c696d487d8c2bb4a040c4379899 /indra/newview/llimfloater.cpp
parenta46794bcff15b70ab4e5e04ce12d118579b72245 (diff)
Change /me emote formatting to pure italics, not underlined.
Review pending with Richard/Leyla
Diffstat (limited to 'indra/newview/llimfloater.cpp')
-rw-r--r--indra/newview/llimfloater.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp
index c2c83191e0..120935883a 100644
--- a/indra/newview/llimfloater.cpp
+++ b/indra/newview/llimfloater.cpp
@@ -494,12 +494,12 @@ void LLIMFloater::updateMessages()
if (from.size() > 0)
{
append_style_params.font.style = "ITALIC";
- chat.mText = from + " ";
+ chat.mText = from;
mChatHistory->appendWidgetMessage(chat, append_style_params);
}
message = message.substr(3);
- append_style_params.font.style = "UNDERLINE";
+ append_style_params.font.style = "ITALIC";
mChatHistory->appendText(message, FALSE, append_style_params);
}
else