Alexander Scherbatiy

Results 27 comments of Alexander Scherbatiy

We do not use additional repositories. The dependency on the numenta library in our pom file is: ``` org.numenta htm.java 0.6.13 ``` The dependecy:tree shows the algorithmfoundry library only in...

I downloaded GraalVM Community Edition 22.3.0 Java 19 from https://github.com/graalvm/graalvm-ce-builds/releases/tag/vm-22.3.0 page. objdump shows that symbol `jvm` is defined as global: ``` objdump -t graalvm-ce-java19-22.3.0/lib/static/linux-amd64/glibc/libawt.a | grep jvm 0000000000000000 g O...

The fix also fixes the first use case described in the JDK-8087370 ``` 1. Consider you're touching the screen with two fingers, for example coordinates of one point is ~100,100...

I have Touchscreen only on Raspberry Pi so I checked the touch events only on JavaFX on arm with Monocle and GTK. I also checked the fix with ScrollPaneControlsSample on...

Some more details about handled events in ScrollPaneSample Monocle. Touch and release a button (press a button by touching the screen) ``` [button behavior] MOUSE_ENTERED, Button: 2 [button behavior] MOUSE_PRESSED,...

May be it has sense to add a drag event handler (which disarms the corresponding button) to ButtonBehavior only if javafx.platform is set to monocle to localize the fix only...

> The expected result isn't explicit in the bug report, so just to confirm, there should be no button action events received at all when you touch any of the...

The fix #746 for 8282702 also proposes to copy the touch state. The fix makes it in LinuxStatefulMultiTouchProcessor class. Do issues 8087370 and 8282702 have the same root?

It's sounds reasonable to fix the issue generally on all available touch processors.