Fix truly ancient bug that fails to open the content tab after a drag/drop event
parent
e95e652892
commit
ea2956baaf
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue