Font not displayed in Idea

After updating jrk7-openjdk and jre7-openjdk fonts do not appear from Idea. Reinstalling openjdk packages and the idea did not help.

uname -a: Linux ftp27host 3.14.6-1-ARCH # 1 SMP PREEMPT Sun Jun 8 10:08:38 CEST 2014 x86_64 GNU / Linux

Main

Settings

+6
source share
2 answers

Thank user3745346 I had the same problem with Idea ultimate in ArchLinux. Fixed by changing string

-Dawt.useSystemAAFontSettings=lcd

to

-Dawt.useSystemAAFontSettings=on

at IDEA_HOME / bin / idea64.vmoptions

+7
source

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.

+4
source

Source: https://habr.com/ru/post/970854/


All Articles