diff --git a/src/dlangui/graphics/ftfonts.d b/src/dlangui/graphics/ftfonts.d index 41f7bd8f..f1a6e828 100644 --- a/src/dlangui/graphics/ftfonts.d +++ b/src/dlangui/graphics/ftfonts.d @@ -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 '-';