mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Merge "Fix: The top left key is a proximity of nonexistent keys."
This commit is contained in:
commit
a84f7848d8
@ -164,6 +164,9 @@ class ProximityInfoUtils {
|
||||
const int gridWidth, const int mostCommonKeyWidth, const int keyCount,
|
||||
const int x, const int y, const int primaryKey, const char *const localeStr,
|
||||
const hash_map_compat<int, int> *const codeToKeyMap, int *proximities) {
|
||||
if (x == NOT_A_COORDINATE || y == NOT_A_COORDINATE) {
|
||||
return;
|
||||
}
|
||||
const int mostCommonKeyWidthSquare = mostCommonKeyWidth * mostCommonKeyWidth;
|
||||
int insertPos = 0;
|
||||
proximities[insertPos++] = primaryKey;
|
||||
|
Loading…
Reference in New Issue
Block a user