adte
05/22/2023, 1:28 PMephemient
05/22/2023, 10:39 PMephemient
05/22/2023, 10:41 PMadte
05/23/2023, 9:42 AMadte
05/23/2023, 9:54 AMAlex Gwyn
07/02/2023, 7:31 AMWindow(){
...
CompositionLocalProvider(SwingWindow provides window) {
....
}
}
I think there might be some other steps around accessing the apple API and also iirc there was an issue in the default JDK at one point that caused errors to be thrown for every zoom event.
Let me know if this helps!adte
07/02/2023, 1:38 PMAlex Gwyn
07/02/2023, 2:39 PMAlex Gwyn
07/02/2023, 2:41 PMtasks.withType<JavaCompile> {
options.compilerArgs.addAll(
listOf(
"-XDignore.symbol.file",
"--add-exports",
"java.desktop/com.apple.eawt.event=ALL-UNNAMED"
)
)
}
Alex Gwyn
07/02/2023, 3:58 PM