Fix incorrect Link number in build floater.

This commit is contained in:
Liru Færs
2020-01-04 09:39:11 -05:00
parent 1853500e10
commit 6d776632a9

View File

@@ -600,12 +600,12 @@ void LLFloaterTools::refresh()
S32 index = 1;
for (const auto& child : children)
{
++index;
if (child->isSelected())
{
LLResMgr::getInstance()->getIntegerString(value_string, index);
break;
}
++index;
}
}
}