From 6d776632a98fe260ed2503341796a872aeabf7d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Liru=20F=C3=A6rs?= Date: Sat, 4 Jan 2020 09:39:11 -0500 Subject: [PATCH] Fix incorrect Link number in build floater. --- indra/newview/llfloatertools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llfloatertools.cpp b/indra/newview/llfloatertools.cpp index b7147404b..aec33c078 100644 --- a/indra/newview/llfloatertools.cpp +++ b/indra/newview/llfloatertools.cpp @@ -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; } } }