Fixed a focus issue that prevented face media floater from updating on face change if said floater had current focus.
This commit is contained in:
@@ -92,6 +92,15 @@ LLToolPie::LLToolPie()
|
||||
{
|
||||
}
|
||||
|
||||
BOOL LLToolPie::handleAnyMouseClick(S32 x, S32 y, MASK mask, EClickType clicktype, BOOL down)
|
||||
{
|
||||
BOOL result = LLMouseHandler::handleAnyMouseClick(x, y, mask, clicktype, down);
|
||||
|
||||
// This override DISABLES the keyboard focus reset that LLTool::handleAnyMouseClick adds.
|
||||
// LLToolPie will do the right thing in its pick callback.
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
BOOL LLToolPie::handleMouseDown(S32 x, S32 y, MASK mask)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user