aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/main.cpp
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-08-06 00:02:16 +0000
committerWeblate <noreply@weblate.org>2017-08-06 00:02:16 +0000
commitb1df5e55259c76e6ca963cf0af25e20ee4a1897d (patch)
tree770cbcbc98cc24416d43282ca7f37c1a3cd7309a /src-qt5/core/lumina-desktop-unified/main.cpp
parentTranslated using Weblate (French) (diff)
parentMake sure the "start-lumina-desktop" routine will detect/adjust the X11 Displ... (diff)
downloadlumina-b1df5e55259c76e6ca963cf0af25e20ee4a1897d.tar.gz
lumina-b1df5e55259c76e6ca963cf0af25e20ee4a1897d.tar.bz2
lumina-b1df5e55259c76e6ca963cf0af25e20ee4a1897d.zip
Merge remote-tracking branch 'origin/master'
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 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
bgstack15