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

Commit 7c1b1087 authored by Raph Levien's avatar Raph Levien Committed by Android (Google) Code Review
Browse files

Merge "Fix for "Can't place cursor after combining accent"" into klp-dev

parents ab98a0b1 373b7a8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1115,7 +1115,7 @@ public abstract class Layout {


        float dist = Math.abs(getPrimaryHorizontal(max) - horiz);
        float dist = Math.abs(getPrimaryHorizontal(max) - horiz);


        if (dist < bestdist) {
        if (dist <= bestdist) {
            bestdist = dist;
            bestdist = dist;
            best = max;
            best = max;
        }
        }