3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ubuntuでArduino IDEのエディタの文字化けのようなもの

Last updated at Posted at 2016-09-28

環境:ubuntu 14.04LTS

ubuntuにArduino IDEをインストールして、プログラムを書こうとしたところ、

書いた文字の一部分がが消えたり、戻ったりするという減少が起こりました。これは文字が消えたわけではなく、見えなくなっただけで、ビルドには影響はありませんでした。

しかし、致命的ではないにしても、操作性が我慢ならないくらいに不便だったので、解決方法を模索していました。

結論として、

IDEのフォントの問題であることが分かりました。

解決策は、

gedit ~/.arduino/preferences.txt

で開いて、

editor.font=

の部分を

editor.font=Monospaced,plain,16

にしたところ、正常に戻りました。Monospacedの部分は好きなフォントに変更してください

とにかく、別のフォントに変更したらうまくいきました

ちなみに設定できるフォントは

fc-list

で確認できます。多すぎて何がなんだか分かりませんがね(笑)

おそらく原因はここだと思うのですが、ほかの部分もいじっていたりもしていたので、それでもダメなら以下のことを試してみてもいいかもしれません。

gedit ~/.arduino/preferences.txt で開いて editor.antialias=false をtrueに変える

sudo gedit /usr/bin/arduino で開いて 

java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base "$@"

の部分を

#java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel processing.app.Base "$@"

java processing.app.Base "$@"

に変える。

すこしでも力になれば幸いです。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?