Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2023-01-05 Thread Sergey Bylokhov
On Thu, 29 Dec 2022 20:41:04 GMT, Artem Semenov wrote: >> [CommonComponentAccessibility getActionsWithEnv:] defines the >> getAccessibleActionCount method on the AccessibleAction class, however the >> call should go through CAccessibility so that it is executed on the Event >> Dispatch thread.

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2023-01-05 Thread Phil Race
On Fri, 30 Dec 2022 06:53:56 GMT, Sergey Bylokhov wrote: >> Artem Semenov has updated the pull request incrementally with one additional >> commit since the last revision: >> >> There's a more compact way of doing this: > > src/java.desktop/macosx/native/libawt_lwawt/awt/a11y/CommonComponentA

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2023-01-05 Thread Phil Race
On Thu, 29 Dec 2022 20:41:04 GMT, Artem Semenov wrote: >> [CommonComponentAccessibility getActionsWithEnv:] defines the >> getAccessibleActionCount method on the AccessibleAction class, however the >> call should go through CAccessibility so that it is executed on the Event >> Dispatch thread.

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2022-12-29 Thread Sergey Bylokhov
On Thu, 29 Dec 2022 20:41:04 GMT, Artem Semenov wrote: >> [CommonComponentAccessibility getActionsWithEnv:] defines the >> getAccessibleActionCount method on the AccessibleAction class, however the >> call should go through CAccessibility so that it is executed on the Event >> Dispatch thread.

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2022-12-29 Thread SWinxy
On Thu, 29 Dec 2022 20:41:04 GMT, Artem Semenov wrote: >> [CommonComponentAccessibility getActionsWithEnv:] defines the >> getAccessibleActionCount method on the AccessibleAction class, however the >> call should go through CAccessibility so that it is executed on the Event >> Dispatch thread.

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2022-12-29 Thread Artem Semenov
On Thu, 29 Dec 2022 19:40:17 GMT, SWinxy wrote: >> Artem Semenov has updated the pull request incrementally with one additional >> commit since the last revision: >> >> There's a more compact way of doing this: > > src/java.desktop/macosx/classes/sun/lwawt/macosx/CAccessibility.java line 530:

Re: RFR: 8299412 JNI call of getAccessibleActionCount on a wrong thread [v2]

2022-12-29 Thread Artem Semenov
> [CommonComponentAccessibility getActionsWithEnv:] defines the > getAccessibleActionCount method on the AccessibleAction class, however the > call should go through CAccessibility so that it is executed on the Event > Dispatch thread. > > @azuev-java @mrserb @prrace please review Artem Semeno