diff options
author | Kent Quirk <q@lindenlab.com> | 2010-12-01 15:34:44 -0500 |
---|---|---|
committer | Kent Quirk <q@lindenlab.com> | 2010-12-01 15:34:44 -0500 |
commit | 3cf5ee8a2f547af245140f058288a093a2ff0ed0 (patch) | |
tree | dd06bf940e7c6e0ece6c403deb71139bd49be38c /indra/llui | |
parent | a2439b74df5adaed8127aac9fff94e88e15e51a9 (diff) |
Fix STORM-716 by re-fixing STORM-530 in a different way.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llcombobox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llcombobox.cpp b/indra/llui/llcombobox.cpp index a268ee5d75..70014fe4f5 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 + else if ((mList->getLastSelectedItem() != last_selected_item) || (key == KEY_DOWN) || (key == KEY_UP)) { showList(); } |