summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-19 18:23:42 +0200
committerYchebotarev ProductEngine <ychebotarev@productengine.com>2010-01-19 18:23:42 +0200
commitac8f5e6f91dab3c3cb9c2fb2ed0274e71f17f1bb (patch)
treea0c59bc6c763c30bab9bee7aa613e8febc2f2033 /indra/llui
parent82de841c52357642d30b6d89b11da079f9c0f5d1 (diff)
fix for low EXT-4464 There is no visual indication of current selection while traversing Group Profile accordion using keyboard
actually that was done for some reason... but I really really really don't understand them --HG-- branch : product-engine
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llaccordionctrltab.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llaccordionctrltab.cpp b/indra/llui/llaccordionctrltab.cpp
index 9d6ba57c29..4bfe44135a 100644
--- a/indra/llui/llaccordionctrltab.cpp
+++ b/indra/llui/llaccordionctrltab.cpp
@@ -157,7 +157,8 @@ void LLAccordionCtrlTab::LLAccordionCtrlTabHeader::draw()
// because the user's mental model of focus is that it goes away after
// the accordion is closed.
if (getParent()->hasFocus()
- && !(collapsible && !expanded))
+ /*&& !(collapsible && !expanded)*/ // WHY??
+ )
{
mImageHeaderFocused->draw(0,0,width,height);
}