I had the same problem with phpstorm (it is based on the idea). I found a solution by adding:
export _JAVA_OPTIONS = '- Dawt.useSystemAAFontSettings = on'
to my /usr/bin/phpstorm.sh
Now file:
#!/bin/sh export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on' cd /usr/share/phpstorm/bin/ ./phpstorm.sh " $@ "
I think the idea will be the same.
source share