RFR: 8319844 : Text/TextFlow.hitTest() is incorrect in RTL orientation [v17]
John Hendrikx
jhendrikx at openjdk.org
Mon Mar 4 17:16:56 UTC 2024
On Mon, 4 Mar 2024 16:15:02 GMT, Andy Goryachev <angorya at openjdk.org> wrote:
>> Karthik P K has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Add unit test
>
> modules/javafx.graphics/src/main/java/javafx/scene/text/Text.java line 1044:
>
>> 1042: private int findFirstRunStart() {
>> 1043: int start = Integer.MAX_VALUE;
>> 1044: for (GlyphList r: getRuns()) {
>
> the old code had a 0 check for getRuns.length, presumably to avoid the iterator creation.
> the new code is probably fine, because most of the time we'll have the need for the iterator anyway.
`getRuns` returns an array, it won't create an `Iterator`.
-------------
PR Review Comment: https://git.openjdk.org/jfx/pull/1323#discussion_r1511503440
More information about the openjfx-dev
mailing list