diff options
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/llflatlistview.cpp | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/indra/llui/llflatlistview.cpp b/indra/llui/llflatlistview.cpp index bc34012267..d8084fd9aa 100644 --- a/indra/llui/llflatlistview.cpp +++ b/indra/llui/llflatlistview.cpp @@ -562,8 +562,7 @@ BOOL LLFlatListView::handleKeyHere(KEY key, MASK mask)  		{  			if(MASK_CONTROL & mask)  			{ -				selectAll(); -				handled = TRUE; +				handled = (BOOL)selectAll();  			}  			break;  		} @@ -793,7 +792,7 @@ bool LLFlatListView::selectNextItemPair(bool is_up_direction, bool reset_selecti  bool LLFlatListView::selectAll()  { -	if (!mAllowSelection) +	if (!mAllowSelection || !mMultipleSelection)  		return false;  	mSelectedItemPairs.clear(); | 
