diff options
author | Ken Moore <ken@ixsystems.com> | 2017-08-03 14:09:25 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-08-03 14:09:25 -0400 |
commit | ea4633af10fdc9ad297bb453fd5dd26ac25448ff (patch) | |
tree | 1807936bc3f2e0d20fab0026b320894dd36bdb63 /src-qt5/core/lumina-desktop-unified | |
parent | Cleanup some fallback routines for loading icons from the Qt theme methods. (diff) | |
download | lumina-ea4633af10fdc9ad297bb453fd5dd26ac25448ff.tar.gz lumina-ea4633af10fdc9ad297bb453fd5dd26ac25448ff.tar.bz2 lumina-ea4633af10fdc9ad297bb453fd5dd26ac25448ff.zip |
Setup the Lumina 1.x desktop to use the new theme engine by default
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/main.cpp | 2 |
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 8e40f7eb..ef15cfcd 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... + //unsetenv("QT_QPA_PLATFORMTHEME"); //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 |