Use the Windows default font on Windows 7 and 8/8.1

It contains the characters we need and will make the application look more
"native".

See #712

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-08-22 15:22:02 -07:00
parent 438fe5dbde
commit e893f6bd9d
6 changed files with 37 additions and 5 deletions

View file

@ -479,3 +479,11 @@ QString SubsurfaceSysInfo::osArch()
#endif
return res;
}
extern "C" {
bool isWin7Or8()
{
QString os = SubsurfaceSysInfo::prettyOsName();
return os == "Windows 7" || os.startsWith("Windows 8");
}
}