Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88ec125c authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix a bug with negative coordinates, step 1

This breaks style guidelines but for some reason git diff gets
so lost on this re-indent that it's better to do it like this

Change-Id: Ie0a603eb0739704894a5adc25f9d527b37bdf151
parent 2b5b6388
Loading
Loading
Loading
Loading
+39 −37
Original line number Diff line number Diff line
@@ -156,6 +156,7 @@ void ProximityInfo::calculateNearbyKeyCodes(
    int insertPos = 0;
    inputCodes[insertPos++] = primaryKey;
    const int startIndex = getStartIndexFromCoordinates(x, y);

        for (int i = 0; i < MAX_PROXIMITY_CHARS_SIZE; ++i) {
            const int32_t c = mProximityCharsArray[startIndex + i];
            if (c < KEYCODE_SPACE || c == primaryKey) {
@@ -207,6 +208,7 @@ void ProximityInfo::calculateNearbyKeyCodes(
            }
        }
    }

    // Add a delimiter for the proximity characters
    for (int i = insertPos; i < MAX_PROXIMITY_CHARS_SIZE; ++i) {
        inputCodes[i] = NOT_A_CODE;