Skip to content
Snippets Groups Projects
Commit de2fe92b authored by Sergey Borushevsky's avatar Sergey Borushevsky
Browse files

Fixed normal bug EXT-2150 (IM Floaters should display their title in CAPS (p2p, group, ad-hoc)).

--HG--
branch : product-engine
parent fc7ac26e
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,10 @@ BOOL LLIMFloater::postBuild() ...@@ -236,7 +236,10 @@ BOOL LLIMFloater::postBuild()
mChatHistory = getChild<LLChatHistory>("chat_history"); mChatHistory = getChild<LLChatHistory>("chat_history");
setTitle(LLIMModel::instance().getName(mSessionID)); std::string session_name(LLIMModel::instance().getName(mSessionID));
LLStringUtil::toUpper(session_name);
setTitle(session_name);
setDocked(true); setDocked(true);
mTypingStart = LLTrans::getString("IM_typing_start_string"); mTypingStart = LLTrans::getString("IM_typing_start_string");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment