aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/lltabcontainervertical.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llui/lltabcontainervertical.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/lltabcontainervertical.cpp b/linden/indra/llui/lltabcontainervertical.cpp
index a921b4b..317b7ca 100644
--- a/linden/indra/llui/lltabcontainervertical.cpp
+++ b/linden/indra/llui/lltabcontainervertical.cpp
@@ -557,12 +557,12 @@ BOOL LLTabContainerVertical::handleKeyHere(KEY key, MASK mask, BOOL called_from_
557 BOOL handled = FALSE; 557 BOOL handled = FALSE;
558 if (getEnabled()) 558 if (getEnabled())
559 { 559 {
560 if (key == '[' && mask == MASK_CONTROL) 560 if (key == KEY_LEFT && mask == MASK_ALT)
561 { 561 {
562 selectPrevTab(); 562 selectPrevTab();
563 handled = TRUE; 563 handled = TRUE;
564 } 564 }
565 else if (key == ']' && mask == MASK_CONTROL) 565 else if (key == KEY_RIGHT && mask == MASK_ALT)
566 { 566 {
567 selectNextTab(); 567 selectNextTab();
568 handled = TRUE; 568 handled = TRUE;