diff options
author | Ken Moore <ken@ixsystems.com> | 2018-10-04 06:37:10 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-10-04 06:37:10 -0400 |
commit | 5d59a9f2c17bb278297e849c442bad1bdd32faf9 (patch) | |
tree | 127b35f8bc2563e11e656475950ea0bcfac668eb /src-qt5 | |
parent | Some minor cleanup. Nothing much changed (diff) | |
download | lumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.tar.gz lumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.tar.bz2 lumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.zip |
Fix a quick typo in the session environment setup.
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/core/lumina-session/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-session/main.cpp b/src-qt5/core/lumina-session/main.cpp index 3b71bdca..553ac1d4 100644 --- a/src-qt5/core/lumina-session/main.cpp +++ b/src-qt5/core/lumina-session/main.cpp @@ -86,7 +86,7 @@ int main(int argc, char ** argv) unsetenv("QT_QPA_PLATFORMTHEME"); //causes issues with Lumina themes - not many people have this by default... //Startup the session QApplication a(argc, argv); - setenv("QP_QPA_PLATFORMTHEME","lthemeengine",1); //make sure this is after the QApplication - not actually using the theme plugin for **this** process + setenv("QT_QPA_PLATFORMTHEME","lthemeengine",1); //make sure this is after the QApplication - not actually using the theme plugin for **this** process LSession sess; sess.checkFiles(); //Make sure user files are created/installed first sess.start(unified); |