diff options
author | Richard Linden <none@none> | 2012-08-01 20:07:42 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2012-08-01 20:07:42 -0700 |
commit | 88e81f99293c992944787289699bf885568bf327 (patch) | |
tree | dfef61dd4aad6a5681122497678b263ab93449cd /indra/llui/llfolderviewitem.cpp | |
parent | c009cf4f7656ec27347e1e9c740da26c12726c99 (diff) |
CHUI-223 WIP Selecting to cut an inventory item causes all open inventory windows to refresh
avoid moving selection when cutting
Diffstat (limited to 'indra/llui/llfolderviewitem.cpp')
-rw-r--r-- | indra/llui/llfolderviewitem.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llui/llfolderviewitem.cpp b/indra/llui/llfolderviewitem.cpp index 5238bfd7e4..68b442dd9a 100644 --- a/indra/llui/llfolderviewitem.cpp +++ b/indra/llui/llfolderviewitem.cpp @@ -810,6 +810,12 @@ LLFolderViewModelInterface* LLFolderViewItem::getFolderViewModel( void ) return getRoot()->getFolderViewModel(); } +bool LLFolderViewItem::isInSelection() const +{ + return mIsSelected || (mParentFolder && mParentFolder->isInSelection()); +} + + ///---------------------------------------------------------------------------- /// Class LLFolderViewFolder |