Revert "Check list in a reverse order #2765"

This reverts commit 3de98a2f44a20449468496d47f5642b534a80cf6.
This commit is contained in:
Jerry (Xinyu Hou) 2016-07-20 10:12:07 -07:00
parent fec53e812f
commit 683d9b3786
1 changed files with 2 additions and 2 deletions

View File

@ -692,7 +692,7 @@ KeyMap::findBestKey(const KeyEntryList& entryList,
KeyModifierMask desiredState) const
{
// check for an item that can accommodate the desiredState exactly
for (SInt32 i = (SInt32)entryList.size() - 1; i >= 0; --i) {
for (SInt32 i = 0; i < (SInt32)entryList.size(); ++i) {
const KeyItem& item = entryList[i].back();
if ((item.m_required & desiredState) ==
(item.m_sensitive & desiredState)) {
@ -704,7 +704,7 @@ KeyMap::findBestKey(const KeyEntryList& entryList,
// choose the item that requires the fewest modifier changes
SInt32 bestCount = 32;
SInt32 bestIndex = -1;
for (SInt32 i = (SInt32)entryList.size() - 1; i >= 0; --i) {
for (SInt32 i = 0; i < (SInt32)entryList.size(); ++i) {
const KeyItem& item = entryList[i].back();
KeyModifierMask change =
((item.m_required ^ desiredState) & item.m_sensitive);