Merge
commit
e3e8726553
|
|
@ -1375,6 +1375,18 @@ BOOL LLFolderView::handleMouseDown( S32 x, S32 y, MASK mask )
|
|||
return LLView::handleMouseDown( x, y, mask );
|
||||
}
|
||||
|
||||
// <FS:Ansariel> FIRE-14223: Using mouse scroll while renaming an item moves line editor out of inventory floater
|
||||
BOOL LLFolderView::handleScrollWheel(S32 x, S32 y, S32 clicks)
|
||||
{
|
||||
if (mRenameItem)
|
||||
{
|
||||
finishRenamingItem();
|
||||
}
|
||||
|
||||
return LLView::handleScrollWheel(x, y, clicks);
|
||||
}
|
||||
// </FS:Ansariel>
|
||||
|
||||
BOOL LLFolderView::search(LLFolderViewItem* first_item, const std::string &search_string, BOOL backward)
|
||||
{
|
||||
// get first selected item
|
||||
|
|
|
|||
|
|
@ -200,6 +200,7 @@ public:
|
|||
/*virtual*/ BOOL handleMouseDown( S32 x, S32 y, MASK mask );
|
||||
/*virtual*/ BOOL handleDoubleClick( S32 x, S32 y, MASK mask );
|
||||
/*virtual*/ BOOL handleRightMouseDown( S32 x, S32 y, MASK mask );
|
||||
/*virtual*/ BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); // <FS:Ansariel> FIRE-14223: Using mouse scroll while renaming an item moves line editor out of inventory floater
|
||||
/*virtual*/ BOOL handleHover( S32 x, S32 y, MASK mask );
|
||||
/*virtual*/ BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
|
||||
EDragAndDropType cargo_type,
|
||||
|
|
|
|||
Loading…
Reference in New Issue