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

Commit f75c9f11 authored by Eran Mizrahi's avatar Eran Mizrahi
Browse files

RTL: Fix handling of special unicode marker 0xFEFF

This fixes a problem introduced by commit 43e45eb9
which (wrongly) handled the 0xFEFF mark as RTL.

Change-Id: Icf8fce91e6df8c4fa8e01eb893174a9fdb8c0766
parent 7fe44a25
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1692,7 +1692,7 @@ public class TextUtils {
               (c >= 0xFB1D && c <= 0xFB4F) ||
               (c >= 0x0600 && c <= 0x07BF) ||
               (c >= 0xFB50 && c <= 0xFDFF) ||
               (c >= 0xFE70 && c <= 0xFEFF)    ;
               (c >= 0xFE70 && c <= 0xFEFE)    ;
    }

    /**