mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
Made index 1 based in log #2765
This commit is contained in:
parent
7bf9ca44ae
commit
583ac1ed2d
@ -696,7 +696,7 @@ KeyMap::findBestKey(const KeyEntryList& entryList,
|
||||
const KeyItem& item = entryList[i].back();
|
||||
if ((item.m_required & desiredState) ==
|
||||
(item.m_sensitive & desiredState)) {
|
||||
LOG((CLOG_DEBUG1 "best key index %d of %d (exact)", i, entryList.size()));
|
||||
LOG((CLOG_DEBUG1 "best key index %d of %d (exact)", i + 1, entryList.size()));
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user