Using bundled fonts by default (#307)

This commit is contained in:
xarkes 2018-01-31 16:36:09 +01:00 committed by GitHub
parent dc3fe4f3c4
commit 4cc51a6a51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -226,7 +226,7 @@ void Configuration::loadDarkTheme()
const QFont Configuration::getFont() const
{
QFont font = s.value("font", QFontDatabase::systemFont(QFontDatabase::FixedFont)).value<QFont>();
QFont font = s.value("font", QFont("Inconsolata", 12)).value<QFont>();
return font;
}