Check list in a reverse order #2765

This commit is contained in:
Jerry (Xinyu Hou) 2016-04-21 14:04:20 +01:00
parent 7f786cc884
commit 7bf9ca44ae
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 = 0; i < (SInt32)entryList.size(); ++i) {
for (SInt32 i = (SInt32)entryList.size() - 1; i >= 0; --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 = 0; i < (SInt32)entryList.size(); ++i) {
for (SInt32 i = (SInt32)entryList.size() - 1; i >= 0; --i) {
const KeyItem& item = entryList[i].back();
KeyModifierMask change =
((item.m_required ^ desiredState) & item.m_sensitive);