diff --git a/src/dlangui/core/settings.d b/src/dlangui/core/settings.d index 6f287fd9..ef9d5b6d 100644 --- a/src/dlangui/core/settings.d +++ b/src/dlangui/core/settings.d @@ -498,7 +498,7 @@ final class Setting { case UINTEGER: return to!string(_store.uinteger); case FLOAT: - return to!string(_store.floating); + return to!string(cast(double)_store.floating); case TRUE: return "true"; case FALSE: @@ -519,7 +519,7 @@ final class Setting { case UINTEGER: return to!string(_store.uinteger); case FLOAT: - return to!string(_store.floating); + return to!string(cast(double)_store.floating); case TRUE: return "true"; case FALSE: diff --git a/src/dlangui/graphics/ftfonts.d b/src/dlangui/graphics/ftfonts.d index b1aed796..662a7be8 100644 --- a/src/dlangui/graphics/ftfonts.d +++ b/src/dlangui/graphics/ftfonts.d @@ -771,7 +771,9 @@ bool registerFontConfigFonts(FreeTypeFontManager fontMan) { } string fn = fromStringz(s).dup; string fn16 = toLower(fn); - if (!fn16.endsWith(".ttf") && !fn16.endsWith(".odf") && !fn16.endsWith(".otf") && !fn16.endsWith(".pfb") && !fn16.endsWith(".pfa") ) { + if (!fn16.endsWith(".ttf") && !fn16.endsWith(".odf") && !fn16.endsWith(".otf") && + !fn16.endsWith(".ttc") && !fn16.endsWith(".pfb") && !fn16.endsWith(".pfa") ) + { continue; } int weight = FC_WEIGHT_MEDIUM; @@ -912,9 +914,6 @@ bool registerFontConfigFonts(FreeTypeFontManager fontMan) { } */ - facesFound++; - - } FcFontSetDestroy(fontset);