Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-06 Thread Ambarish Rapte
On Thu, 2 Apr 2020 14:55:35 GMT, Kevin Rushforth wrote: > As noted in the JBS issue, this bug is a result of a deliberate change by > Apple that affects applications (in this case > the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two > methods that we are relying on, >

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-06 Thread Kevin Rushforth
On Mon, 6 Apr 2020 12:28:21 GMT, Ambarish Rapte wrote: >> As noted in the JBS issue, this bug is a result of a deliberate change by >> Apple that affects applications (in this case >> the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two >> methods that we are relying on,

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-06 Thread Ambarish Rapte
On Thu, 2 Apr 2020 14:55:35 GMT, Kevin Rushforth wrote: > As noted in the JBS issue, this bug is a result of a deliberate change by > Apple that affects applications (in this case > the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two > methods that we are relying on, >

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-06 Thread Ambarish Rapte
On Thu, 2 Apr 2020 14:55:35 GMT, Kevin Rushforth wrote: > As noted in the JBS issue, this bug is a result of a deliberate change by > Apple that affects applications (in this case > the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two > methods that we are relying on, >

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-03 Thread Michael Paus
On Thu, 2 Apr 2020 14:55:35 GMT, Kevin Rushforth wrote: > As noted in the JBS issue, this bug is a result of a deliberate change by > Apple that affects applications (in this case > the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two > methods that we are relying on, >

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-03 Thread Kevin Rushforth
On Fri, 3 Apr 2020 14:14:36 GMT, Michael Paus wrote: >> These are all separate issues that could be explored with follow-on bugs. >> I'm not sure what the right behavior is for >> these or whether there is enough information from the OS to do anything >> about them (e.g., I suspect there is no

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-03 Thread Michael Paus
On Fri, 3 Apr 2020 12:35:35 GMT, Kevin Rushforth wrote: >> I've built a fresh JFX, with your changes applied to master, this morning. I >> can confirm that the primary bug seems to >> be fixed with these changes but I have observed some behaviour where I am >> not sure whether it is correct or

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-03 Thread Kevin Rushforth
On Fri, 3 Apr 2020 11:32:12 GMT, Michael Paus wrote: >> @arapte Can you be one of the reviewers? >> >> @mipastgt I ran it against your test application, but if you have other >> tests you could run, that would be helpful. > > I've built a fresh JFX, with your changes applied to master, this mor

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-03 Thread Michael Paus
On Thu, 2 Apr 2020 22:04:55 GMT, Kevin Rushforth wrote: >> As noted in the JBS issue, this bug is a result of a deliberate change by >> Apple that affects applications (in this case >> the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two >> methods that we are relying on

RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-02 Thread Kevin Rushforth
As noted in the JBS issue, this bug is a result of a deliberate change by Apple that affects applications (in this case the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two methods that we are relying on, `beginGestureWithEvent` and `endGestureWithEvent`. There is no depre

Re: RFR: 8236971: [macos] Gestures handled incorrectly due to missing events

2020-04-02 Thread Kevin Rushforth
On Thu, 2 Apr 2020 14:55:35 GMT, Kevin Rushforth wrote: > As noted in the JBS issue, this bug is a result of a deliberate change by > Apple that affects applications (in this case > the JDK) linked against MacOSX 10.11 SDK or later -- they no longer call two > methods that we are relying on, >