MAINT-85 Using mouse scroll while renaming item moves it out of My Inventory tab

master
andreykproductengine 2016-06-16 20:46:53 +03:00
parent d4f5b71434
commit aff8dcea75
1 changed files with 2 additions and 1 deletions

View File

@ -684,9 +684,10 @@ void LLFolderView::draw()
}
}
if (mRenameItem && mRenamer && mRenamer->getVisible() && !getVisibleRect().contains(mRenamer->getRect()))
if (mRenameItem && mRenamer && mRenamer->getVisible() && !getVisibleRect().overlaps(mRenamer->getRect()))
{
// renamer is not connected to the item we are renaming in any form so manage it manually
// TODO: consider stopping on any scroll action instead of when out of visible area
finishRenamingItem();
}