When Japanse (IME on) is inputted to the TextFIeld, which is on JFXPanel,
small window for inputting appears on top-left side of screen

For swing-interop case, WmImeStartComposition starts composition i
If the scaleFactors used for the current device are not 1.0, a JXFPanel will
send a resize event with 0x0 dimensions to the JavaFX scene which can have
undesirable effects, which is because the resize pixel buffer is created even
for initial size of 9x0 width,height.
Fix is to make sure to preve
On Tue, 3 Jan 2023 06:31:37 GMT, Michael Strauß wrote:
>> The children of HBox/VBox don't always pixel-snap to the same value as the
>> container itself when a render scale other than 1 is used. This can lead to
>> a visual glitch where the content bounds don't line up with the container
>> bo
This PR fixes the regression introduced with
[JDK-8087673](https://bugs.openjdk.org/browse/JDK-8087673) by only modifying
the header's width if it is the last visible column.
Two tests that fail before the proposed patch and pass after it have been also
included.
-
Commit messages
On Sun, 2 Jul 2023 09:53:58 GMT, Karthik P K wrote:
> However I agree that bug is present in the character index calculation like
> you mentioned above. I'll work on fixing that.
Correction: The character index calculation looks to be correct when x
coordinate passed to it is correct.
One more