Remove a workaround that seems to be useless since Qt 4.8

This commit is contained in:
Jean-Marc Lasgouttes 2022-11-19 20:09:59 +01:00
parent e11c7cb71d
commit 546efc3ff1

View File

@ -284,14 +284,6 @@ QFont makeQFont(FontInfo const & f)
QString family = makeFontName(toqstr(lyxrc.roman_font_name),
toqstr(lyxrc.roman_font_foundry));
font.setFamily(family);
#ifdef Q_OS_MAC
// FIXME KILLQT4: Double-check that this is fixed in Qt5
// Workaround for a Qt bug, see http://www.lyx.org/trac/ticket/3684
// and http://bugreports.qt.nokia.com/browse/QTBUG-11145.
// FIXME: Check whether this is really fixed in Qt 4.8
if (family == "Times" && !font.exactMatch())
font.setFamily("Times New Roman");
#endif
break;
}
case SANS_FAMILY: