diff options
Diffstat (limited to 'indra/llui')
| -rw-r--r-- | indra/llui/llflatlistview.cpp | 6 | ||||
| -rw-r--r-- | indra/llui/llmenugl.cpp | 2 | 
2 files changed, 5 insertions, 3 deletions
diff --git a/indra/llui/llflatlistview.cpp b/indra/llui/llflatlistview.cpp index 64a4824a17..09124c3013 100644 --- a/indra/llui/llflatlistview.cpp +++ b/indra/llui/llflatlistview.cpp @@ -530,7 +530,8 @@ BOOL LLFlatListView::handleKeyHere(KEY key, MASK mask)  			if ( !selectNextItemPair(true, reset_selection) && reset_selection)  			{  				// If case we are in accordion tab notify parent to go to the previous accordion -				notifyParent(LLSD().with("action","select_prev")); +				if(notifyParent(LLSD().with("action","select_prev")) > 0 )//message was processed +					resetSelection();  			}  			break;  		} @@ -539,7 +540,8 @@ BOOL LLFlatListView::handleKeyHere(KEY key, MASK mask)  			if ( !selectNextItemPair(false, reset_selection) && reset_selection)  			{  				// If case we are in accordion tab notify parent to go to the next accordion -				notifyParent(LLSD().with("action","select_next")); +				if( notifyParent(LLSD().with("action","select_next")) > 0 ) //message was processed +					resetSelection();  			}  			break;  		} diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index fd5c2b7fef..e7b2e8476b 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -3905,7 +3905,7 @@ BOOL LLContextMenu::appendContextSubMenu(LLContextMenu *menu)  	item = LLUICtrlFactory::create<LLContextMenuBranch>(p);  	LLMenuGL::sMenuContainer->addChild(item->getBranch()); -	item->setFont( LLFontGL::getFontSansSerifSmall() ); +	item->setFont( LLFontGL::getFontSansSerif() );  	return append( item );  }  | 
