From 79f7c4c58e355fe78114a940d8c6efcd1e3ff15d Mon Sep 17 00:00:00 2001 From: elektrahesse Date: Thu, 16 Sep 2010 12:39:58 +0200 Subject: Added CHAT_NORMAL_RADIUS check for autocompletion and deleted selection of last part upon new autocomplete attempt --- linden/indra/newview/llchatbar.cpp | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) (limited to 'linden/indra') diff --git a/linden/indra/newview/llchatbar.cpp b/linden/indra/newview/llchatbar.cpp index 8015e10..875153a 100644 --- a/linden/indra/newview/llchatbar.cpp +++ b/linden/indra/newview/llchatbar.cpp @@ -68,6 +68,7 @@ #include "llmultigesture.h" #include "llui.h" #include "lluictrlfactory.h" +#include "llvoavatar.h" #include "chatbar_as_cmdline.h" @@ -216,6 +217,8 @@ BOOL LLChatBar::handleKeyHere( KEY key, MASK mask ) if (!avatar_ids.empty()) { + mInputEditor->deleteSelection(); // Clean up prev completion before attempting a new one + std::string txt(mInputEditor->getText()); std::string to_match(txt); @@ -251,12 +254,23 @@ BOOL LLChatBar::handleKeyHere( KEY key, MASK mask ) { if (avatar_ids[i] == gAgent.getID() || avatar_ids[i].isNull()) continue; -/* - // Commented out for now... doesn't work above 1024 meters as usual + + // Grab the pos again from the objects-in-view cache... LLWorld doesn't work above 1024 meters as usual :( + LLVector3d real_pos = positions[i]; + if (real_pos[2] == 0.0f) + { + LLViewerObject *av_obj = gObjectList.findObject(avatar_ids[i]); + if (av_obj != NULL && av_obj->isAvatar()) + { + LLVOAvatar* avatarp = (LLVOAvatar*)av_obj; + if (avatarp != NULL) + real_pos = avatarp->getPositionGlobal(); + } + } + F32 dist = F32(dist_vec(positions[i], gAgent.getPositionGlobal())); if (dist > CHAT_NORMAL_RADIUS) continue; -*/ std::string agent_name = " "; std::string agent_surname = " "; -- cgit v1.1