Skip to content

Commit

Permalink
Cleanup|Qt|OS X|Shell: Removed obsolete workaround for OS X system font
Browse files Browse the repository at this point in the history
This bug has been fixed in Qt.
  • Loading branch information
skyjake committed May 26, 2015
1 parent c531fc3 commit c223e0f
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions doomsday/tools/shell/src/main.cpp
Expand Up @@ -25,15 +25,6 @@

int main(int argc, char *argv[])
{
#if defined(Q_OS_MACX) && defined(MACOS_10_7)
if(QSysInfo::MacintoshVersion > QSysInfo::MV_10_8)
{
// fix Mac OS X 10.9 (mavericks) font issue
// https://bugreports.qt-project.org/browse/QTBUG-32789
QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
}
#endif

GuiShellApp a(argc, argv);
return a.exec();
}

0 comments on commit c223e0f

Please sign in to comment.