summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorSeth ProductEngine <slitovchuk@productengine.com>2010-11-25 20:06:44 +0200
committerSeth ProductEngine <slitovchuk@productengine.com>2010-11-25 20:06:44 +0200
commitde0dbe57398d5509d97788c5c584ecae24f00b17 (patch)
treeef4890302a6743f38cfe8e62a969299a004ce666 /indra
parent65b3cd14caa9a53f528b1f4b9c1c838fc3ef803b (diff)
STORM-530 FIXED Combobox drop down menu appears upon 'Down Arrow' key press even if last combobox item is selected.
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/llcombobox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llcombobox.cpp b/indra/llui/llcombobox.cpp
index 2dabbc7767..a268ee5d75 100644
--- a/indra/llui/llcombobox.cpp
+++ b/indra/llui/llcombobox.cpp
@@ -769,7 +769,7 @@ BOOL LLComboBox::handleKeyHere(KEY key, MASK mask)
return FALSE;
}
// if selection has changed, pop open list
- else if (mList->getLastSelectedItem() != last_selected_item)
+ else
{
showList();
}