Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8252099: JavaFX does not render Myanmar script correctly
Reviewed-by: prr
  • Loading branch information
Jose Pereda committed Feb 10, 2021
1 parent 9c8d30a commit a23d4ae
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -142,6 +142,9 @@ else if (code < 0x0f00) {
else if (code <= 0x0fff) { // U+0F00 - U+0FFF Tibetan
return true;
}
else if (code <= 0x109f) { // U+1000 - U+109F Myanmar
return true;
}
else if (code < 0x1100) {
return false;
}
Expand Down

1 comment on commit a23d4ae

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.