We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea1f10 commit e1dd29cCopy full SHA for e1dd29c
1 file changed
app/build.gradle.kts
@@ -59,6 +59,8 @@ compose.desktop {
59
}
60
entitlementsFile.set(project.file("entitlements.plist"))
61
runtimeEntitlementsFile.set(project.file("entitlements.plist"))
62
+ // Allow swing to use the system look and feel
63
+ jvmArgs("-Dapple.awt.application.appearance=system")
64
65
windows{
66
iconFile = project.file("../build/windows/processing.ico")
@@ -67,12 +69,9 @@ compose.desktop {
67
69
68
70
linux {
71
iconFile = project.file("../build/linux/processing.png")
72
+ jvmArgs("-Dawt.useSystemAAFontSettings=on")
73
74
- // Allow swing to use the system look and feel
- jvmArgs(
- "-Dapple.awt.application.appearance=system"
75
- )
76
appResourcesRootDir.set(layout.buildDirectory.dir("resources-bundled"))
77
78
0 commit comments