Use default QApplication::font.

This commit is contained in:
John Preston 2020-04-15 18:05:28 +04:00
parent 3090ba7721
commit 2cb10e1d13

View file

@ -215,8 +215,7 @@ void StartFonts() {
#endif // Q_OS_MAC
#endif // !DESKTOP_APP_USE_PACKAGED_FONTS
auto appFont = QFont(GetFontOverride());
appFont.setPixelSize(13);
auto appFont = QApplication::font();
appFont.setStyleStrategy(QFont::PreferQuality);
QApplication::setFont(appFont);