Add option for the default font size

This commit is contained in:
Konstantinos Sideris 2017-07-01 15:21:07 +03:00
parent 0ed2350664
commit 22d0f50e36
2 changed files with 8 additions and 2 deletions

View file

@ -41,7 +41,13 @@ int main(int argc, char *argv[])
app.setWindowIcon(QIcon(":/logos/nheko.png"));
QFont font("Open Sans");
QSettings settings;
// Set the default if a value has not been set.
if (settings.value("font/size").toInt() == 0)
settings.setValue("font/size", 12);
QFont font("Open Sans", settings.value("font/size").toInt());
app.setFont(font);
QString lang = QLocale::system().name();