From a7295226e215560bcef17e99456e37e72633d8a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=B2=A0=5F=E0=B2=A0?= <51381523+QazCetelic@users.noreply.github.com> Date: Wed, 20 Jul 2022 14:55:32 +0200 Subject: [PATCH] Add Java arguments to enable Anti-Aliasing to bash script --- build/linux/processing | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/linux/processing b/build/linux/processing index aebef01cf..7671bfdf9 100755 --- a/build/linux/processing +++ b/build/linux/processing @@ -107,5 +107,5 @@ then else # Start Processing in the same directory as this script cd "$APPDIR" - java -Djna.nosys=true -Dpython.console.encoding=UTF-8 -Xmx512m --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED processing.app.ui.Splash "$@" & + java -Djna.nosys=true -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true -Dpython.console.encoding=UTF-8 -Xmx512m --add-opens=java.desktop/sun.awt.X11=ALL-UNNAMED processing.app.ui.Splash "$@" & fi