Commit 79e27ca6 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(src/main): do not set special case on fonts for mac os

parent 7b7ad00a
......@@ -92,16 +92,7 @@ int main (int argc, char *argv[]) {
}
}
{
QFont font(DEFAULT_FONT);
#ifdef Q_OS_MACOS
// 72 dpi on MacOs...
font.setPixelSize(10 * QApplication::primaryScreen()->physicalDotsPerInch() / 72.0);
#endif // ifdef Q_OS_MACOS
app.setFont(font);
}
app.setFont(QFont(DEFAULT_FONT));
// ---------------------------------------------------------------------------
// Init and run!
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment