Skip to content
Snippets Groups Projects
Commit f452138f authored by Oz Linden's avatar Oz Linden
Browse files

merge changes for storm-1427

parents 3e47d9ae ba475c35
No related branches found
No related tags found
No related merge requests found
...@@ -1221,6 +1221,12 @@ void LLFloaterWorldMap::onLocationCommit() ...@@ -1221,6 +1221,12 @@ void LLFloaterWorldMap::onLocationCommit()
{ // Set the value in the UI if any spaces were removed { // Set the value in the UI if any spaces were removed
getChild<LLUICtrl>("location")->setValue(str); getChild<LLUICtrl>("location")->setValue(str);
} }
// Don't try completing empty name (STORM-1427).
if (str.empty())
{
return;
}
LLStringUtil::toLower(str); LLStringUtil::toLower(str);
mCompletingRegionName = str; mCompletingRegionName = str;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment