mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
main: don't override user-provided QT_QPA_PLATFORM env variable
This commit is contained in:
parent
33afd0bb83
commit
9b18344d23
1 changed files with 2 additions and 2 deletions
|
@ -179,8 +179,8 @@ int main(int argc, char *argv[])
|
|||
// disable "QApplication: invalid style override passed" warning
|
||||
if (isDesktop) qputenv("QT_STYLE_OVERRIDE", "fusion");
|
||||
#ifdef Q_OS_LINUX
|
||||
// force platform xcb
|
||||
if (isDesktop) qputenv("QT_QPA_PLATFORM", "xcb");
|
||||
// platform xcb by default
|
||||
if (isDesktop && qEnvironmentVariableIsEmpty("QT_QPA_PLATFORM")) qputenv("QT_QPA_PLATFORM", "xcb");
|
||||
#endif
|
||||
|
||||
// enable High DPI scaling
|
||||
|
|
Loading…
Reference in a new issue