From 8e62bdb857568a0d9c4bc524aa55236b6999cf8a Mon Sep 17 00:00:00 2001 From: elektrahesse Date: Tue, 14 Sep 2010 04:31:37 +0200 Subject: Small bugfix, no dropdown yet --- linden/indra/newview/llchatbar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linden/indra') diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp index 88ef2b5..4a8afef 100644 --- a/linden/indra/newview/llchatbar.cpp +++ b/linden/indra/newview/llchatbar.cpp @@ -266,12 +266,12 @@ BOOL LLChatBar::handleKeyHere( KEY key, MASK mask ) std::string test_name(agent_name); std::transform(test_name.begin(), test_name.end(), test_name.begin(), tolower); + std::transform(to_match.begin(), to_match.end(), to_match.begin(), tolower); if (test_name.find(to_match) == 0) { - std::string rest_of_match = agent_name.substr(to_match.length(), agent_name.length()); mInputEditor->setText(left_part.substr(0, left_part.length() - to_match.length()) + agent_name + right_part); - mInputEditor->setSelection(cursorPos, cursorPos + rest_of_match.length()); + mInputEditor->setSelection(cursorPos, cursorPos + (agent_name.length() - to_match.length())); return TRUE; } } -- cgit v1.1