Fix truly ancient bug that fails to open the content tab after a drag/drop event

master
Beq 2025-01-10 22:03:13 +00:00
parent e95e652892
commit ea2956baaf
3 changed files with 5 additions and 5 deletions

View File

@ -344,7 +344,7 @@ bool LLToolCompTranslate::handleDoubleClick(S32 x, S32 y, MASK mask)
{
// You should already have an object selected from the mousedown.
// If so, show its properties
LLFloaterReg::showInstance("build", "Content");
LLFloaterReg::showInstance("build", "Contents");
return true;
}
// Nothing selected means the first mouse click was probably
@ -463,7 +463,7 @@ bool LLToolCompScale::handleDoubleClick(S32 x, S32 y, MASK mask)
{
// You should already have an object selected from the mousedown.
// If so, show its properties
LLFloaterReg::showInstance("build", "Content");
LLFloaterReg::showInstance("build", "Contents");
return true;
}
else
@ -674,7 +674,7 @@ bool LLToolCompRotate::handleDoubleClick(S32 x, S32 y, MASK mask)
{
// You should already have an object selected from the mousedown.
// If so, show its properties
LLFloaterReg::showInstance("build", "Content");
LLFloaterReg::showInstance("build", "Contents");
return true;
}
else

View File

@ -1887,7 +1887,7 @@ void LLToolDragAndDrop::dropInventory(LLViewerObject* hit_obj,
if (LLFloaterReg::instanceVisible("build"))
{
// *FIX: only show this if panel not expanded?
LLFloaterReg::showInstance("build", "Content");
LLFloaterReg::showInstance("build", "Contents");
}
// VEFFECT: AddToInventory

View File

@ -88,7 +88,7 @@ bool LLToolIndividual::handleDoubleClick(S32 x, S32 y, MASK mask)
{
// You should already have an object selected from the mousedown.
// If so, show its inventory.
LLFloaterReg::showInstance("build", "Content");
LLFloaterReg::showInstance("build", "Contents");
return true;
}
else