aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/main.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-08-28 15:51:44 -0400
committerKen Moore <ken@ixsystems.com>2017-08-28 15:51:44 -0400
commit63d9e7138811314d5301fbc7a7b92305d19c0d49 (patch)
tree296e91746c35d1503da0b499ed0e3daf3818b4b0 /src-qt5/core/lumina-desktop-unified/main.cpp
parentRemove the src-DE directory from lumina-desktop-unified. No need for this old... (diff)
downloadlumina-63d9e7138811314d5301fbc7a7b92305d19c0d49.tar.gz
lumina-63d9e7138811314d5301fbc7a7b92305d19c0d49.tar.bz2
lumina-63d9e7138811314d5301fbc7a7b92305d19c0d49.zip
Come more work on compositing. Seems like there is a significant difference between my nvidia-based desktop and the Intel laptop.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/main.cpp')
-rw-r--r--src-qt5/core/lumina-desktop-unified/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/main.cpp b/src-qt5/core/lumina-desktop-unified/main.cpp
index ef15cfcd..ed2b9b4c 100644
--- a/src-qt5/core/lumina-desktop-unified/main.cpp
+++ b/src-qt5/core/lumina-desktop-unified/main.cpp
@@ -29,7 +29,7 @@ int main(int argc, char ** argv)
setenv("DESKTOP_SESSION","Lumina",1);
setenv("XDG_CURRENT_DESKTOP","Lumina",1);
setenv("QT_NO_GLIB", "1", 1); //Disable the glib event loop within Qt at runtime (performance hit + bugs)
- //unsetenv("QT_QPA_PLATFORMTHEME"); //causes issues with Lumina themes - not many people have this by default...
+ setenv("QT_QPA_PLATFORMTHEME", "lthemeengine",1); //causes issues with Lumina themes - not many people have this by default...
unsetenv("QT_AUTO_SCREEN_SCALE_FACTOR"); //need exact-pixel measurements (no fake scaling)
//Startup the session
bgstack15