Skip to content
Snippets Groups Projects
Commit e8fd3ab7 authored by akwizgran's avatar akwizgran Committed by root
Browse files

Added DroidSansFallback font for platforms without CJK fonts installed.

parent 4d8641e5
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
<target name='compile'>
<mkdir dir='build'/>
<javac srcdir='net/sf/briar' destdir='build' source='1.5'
includeantruntime='false'>
includeantruntime='false' debug='on'>
<classpath>
<fileset refid='bundled-jars'/>
<fileset refid='test-jars'/>
......
......@@ -35,6 +35,8 @@ public class FontManagerImpl implements FontManager {
new BundledFont("TibetanMachineUni.ttf", 14f, new String[] { "bo" }),
// Use Padauk for Burmese
new BundledFont("Padauk.ttf", 14f, new String[] { "my" }),
// Use DroidSansFallback for Chinese, Japanese and Korean
new BundledFont("DroidSansFallback.ttf", 12f, new String[] { "zh" , "ja", "ko" }),
};
// Map from languages to fonts
......
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment