Changeset 6548 in ntrip for trunk/BNC


Ignore:
Timestamp:
Jan 18, 2015, 10:52:29 PM (9 years ago)
Author:
weber
Message:

Fixed Mac OS X 10.9 (mavericks) font issue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncmain.cpp

    r6451 r6548  
    114114#endif
    115115
     116#ifdef Q_OS_MACX
     117    if ( QSysInfo::MacintoshVersion > QSysInfo::MV_10_8 )
     118    {
     119        // fix Mac OS X 10.9 (mavericks) font issue
     120        // https://bugreports.qt-project.org/browse/QTBUG-32789
     121        QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande");
     122    }
     123#endif
     124
    116125  bool GUIenabled = interactive || displaySet;
    117126  t_app app(argc, argv, GUIenabled);
Note: See TracChangeset for help on using the changeset viewer.