<Swing Dev> RFR: 8262085: Hovering Metal HTML Tooltips in different windows cause IllegalArgExc on Linux [v2]
Alexander Zvegintsev
azvegint at openjdk.java.net
Sun Feb 28 07:39:20 UTC 2021
> This issue occurs only under `MetalLookAndFeel` on Linux.
>
> It was introduced by [JDK-8040630](https://bugs.openjdk.java.net/browse/JDK-8040630) fix.
>
>> component.setBounds(ownerX, ownerY, 1, 1);
>
> This line adds an extra reshape call with `1x1` size right before getting another one with correct sizes.
>
> If `MetalToolTipUI#paint()` call happens before getting correct sizes, it calculates `paintTextR` with negative sizes for component with `1x1` size, thus IAE is thrown.
>
> The fix is to do not proceed with `paint()` for negative sizes.
> The provided test fails for me in 0-30s interval(before the fix), other testing(client-tier1,2,3) looks good.
Alexander Zvegintsev has updated the pull request incrementally with one additional commit since the last revision:
simplified test
-------------
Changes:
- all: https://git.openjdk.java.net/jdk/pull/2761/files
- new: https://git.openjdk.java.net/jdk/pull/2761/files/4ee75411..034425b0
Webrevs:
- full: https://webrevs.openjdk.java.net/?repo=jdk&pr=2761&range=01
- incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=2761&range=00-01
Stats: 113 lines in 1 file changed: 8 ins; 80 del; 25 mod
Patch: https://git.openjdk.java.net/jdk/pull/2761.diff
Fetch: git fetch https://git.openjdk.java.net/jdk pull/2761/head:pull/2761
PR: https://git.openjdk.java.net/jdk/pull/2761
More information about the swing-dev
mailing list