aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-10-04 06:37:10 -0400
committerKen Moore <ken@ixsystems.com>2018-10-04 06:37:10 -0400
commit5d59a9f2c17bb278297e849c442bad1bdd32faf9 (patch)
tree127b35f8bc2563e11e656475950ea0bcfac668eb
parentSome minor cleanup. Nothing much changed (diff)
downloadlumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.tar.gz
lumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.tar.bz2
lumina-5d59a9f2c17bb278297e849c442bad1bdd32faf9.zip
Fix a quick typo in the session environment setup.
-rw-r--r--src-qt5/core/lumina-session/main.cpp2
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);
bgstack15