diff --git a/src/client/fontengine.cpp b/src/client/fontengine.cpp index 965b4ab15..a8c6d4b3e 100644 --- a/src/client/fontengine.cpp +++ b/src/client/fontengine.cpp @@ -278,7 +278,7 @@ gui::IGUIFont *FontEngine::initFont(const FontSpec &spec) }; auto it = m_media_faces.find(media_name); - if (it != m_media_faces.end()) { + if (spec.mode != _FM_Fallback && it != m_media_faces.end()) { auto *face = it->second.get(); if (auto *font = createFont(face)) return font;