mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 08:51:28 +12:00
Qt/Linux: fix QT_AUTO_SCREEN_SCALE_FACTOR typo
This commit is contained in:
parent
e958c3cc6a
commit
e6e753f37f
1 changed files with 3 additions and 3 deletions
|
@ -196,10 +196,10 @@ QCoreApplication* createApplication(int& argc, char* argv[])
|
|||
qputenv("DISPLAY", ":0");
|
||||
}
|
||||
|
||||
// Set QT_AUTO_SCALE_FACTOR to 0. This value is deprecated but still seems to make problems on some distros
|
||||
if (!qEnvironmentVariable("QT_AUTO_SCALE_FACTOR", "").isEmpty())
|
||||
// Set QT_AUTO_SCREEN_SCALE_FACTOR to 0. This value is deprecated but still seems to make problems on some distros
|
||||
if (!qEnvironmentVariable("QT_AUTO_SCREEN_SCALE_FACTOR", "").isEmpty())
|
||||
{
|
||||
qputenv("QT_AUTO_SCALE_FACTOR", "0");
|
||||
qputenv("QT_AUTO_SCREEN_SCALE_FACTOR", "0");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue