From 50d2ba2291223ae4d4f87e199d4a5cf8fc519ce7 Mon Sep 17 00:00:00 2001 From: Alec Lofquist Date: Sat, 27 Sep 2014 17:17:40 -0500 Subject: [PATCH] Fall back to the DroidSansFallbackFull.ttf font on Linux. --- es-core/src/resources/Font.cpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/es-core/src/resources/Font.cpp b/es-core/src/resources/Font.cpp index a6f1294bb..ec0fda351 100644 --- a/es-core/src/resources/Font.cpp +++ b/es-core/src/resources/Font.cpp @@ -384,13 +384,7 @@ std::vector getFallbackFontPaths() // TODO const char* paths[] = { - // Japanese - "/usr/share/fonts/truetype/fonts-japanese-gothic.ttf", - - // Latin - "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif.ttf", - "/usr/share/fonts/TTF/DejaVuSerif.ttf", - "/usr/share/fonts/dejavu/DejaVuSerif.ttf" + "/usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf" // japanese, chinese, present on Debian }; std::vector fontPaths;