Re: RFR: 8275131: Exceptions after a touchpad gesture on macOS

2021-10-12 Thread Phil Race
On Tue, 12 Oct 2021 12:23:02 GMT, Dmitry Batrak wrote: > This is a small fix for a mistake in JDK-8257853 implementation, replacing > DECLARE_METHOD JNI lookup macro with DECLARE_STATIC_METHOD in > [AWTWindow_Normal postGesture:as:a🅱]. > I did not created a test for the fix, as AWT Robot doesn'

Re: RFR: 8275131: Exceptions after a touchpad gesture on macOS

2021-10-12 Thread Dmitry Markov
On Tue, 12 Oct 2021 12:23:02 GMT, Dmitry Batrak wrote: > This is a small fix for a mistake in JDK-8257853 implementation, replacing > DECLARE_METHOD JNI lookup macro with DECLARE_STATIC_METHOD in > [AWTWindow_Normal postGesture:as:a🅱]. > I did not created a test for the fix, as AWT Robot doesn'

RFR: 8275131: Exceptions after a touchpad gesture on macOS

2021-10-12 Thread Dmitry Batrak
This is a small fix for a mistake in JDK-8257853 implementation, replacing DECLARE_METHOD JNI lookup macro with DECLARE_STATIC_METHOD in [AWTWindow_Normal postGesture:as:a🅱]. I did not created a test for the fix, as AWT Robot doesn't currently support touchpad gestures. - Commit me