diff options
author | James Cook <james@lindenlab.com> | 2010-04-28 14:40:02 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-04-28 14:40:02 -0700 |
commit | 149dd3c11b07cfca6b5b7576d6568aef865cefda (patch) | |
tree | 84ca798d1f5c3d81f057a91bfd1868a4da0259a4 /indra/newview | |
parent | 18106568b2f4d1f3d8dc019975ec38d650b5a1ec (diff) |
Allow avatar picker searches for < 3 characters
Basically, allow any non-zero-length search.
Relates to DEV-49464
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llfloateravatarpicker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloateravatarpicker.cpp b/indra/newview/llfloateravatarpicker.cpp index db559ce13c..f3b14b9b3d 100644 --- a/indra/newview/llfloateravatarpicker.cpp +++ b/indra/newview/llfloateravatarpicker.cpp @@ -548,7 +548,7 @@ void LLFloaterAvatarPicker::processResponse(const LLUUID& query_id, const LLSD& //static void LLFloaterAvatarPicker::editKeystroke(LLLineEditor* caller, void* user_data) { - childSetEnabled("Find", caller->getText().size() >= 3); + childSetEnabled("Find", caller->getText().size() > 0); } // virtual |