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

Commit c39916f7 authored by Deepanshu Gupta's avatar Deepanshu Gupta Committed by Android Git Automerger
Browse files

am 37f54f4c: am 357ebfc5: Fix default level flags for bidi. [DO NOT MERGE]

* commit '37f54f4c':
  Fix default level flags for bidi. [DO NOT MERGE]
parents d53a9fcb 37f54f4c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -40,10 +40,10 @@ public class AndroidBidi_Delegate {
        case 1: // Layout.DIR_REQUEST_RTL
            break;  // No change.
        case -1:
            dir = Bidi.LEVEL_DEFAULT_LTR;
            dir = Bidi.LEVEL_DEFAULT_RTL;
            break;
        case -2:
            dir = Bidi.LEVEL_DEFAULT_RTL;
            dir = Bidi.LEVEL_DEFAULT_LTR;
            break;
        default:
            // Invalid code. Log error, assume LEVEL_DEFAULT_LTR and continue.