This commit is contained in:
Vadim Lopatin 2014-04-18 06:24:17 +04:00
parent 3fa5612e90
commit 71a1e4cc78
1 changed files with 2 additions and 1 deletions

View File

@ -163,7 +163,8 @@ private class FreeTypeFontFile {
return true; // successfully opened
}
static static dchar getReplacementChar(dchar code) {
/// find some suitable replacement for important characters missing in font
static dchar getReplacementChar(dchar code) {
switch (code) {
case UNICODE_SOFT_HYPHEN_CODE:
return '-';