diff options
author | q5sys <jt@obs-sec.com> | 2017-07-21 09:52:24 -0400 |
---|---|---|
committer | q5sys <jt@obs-sec.com> | 2017-07-21 09:52:24 -0400 |
commit | 4a4d63f45cfc8fe0b0495615e399b57c41713d06 (patch) | |
tree | 8861bb1de14b2015dcf7407e8b5cfa1ddf5319a2 /src-qt5/core/lumina-desktop-unified/main.cpp | |
parent | clean up lthemeengine-style pages (diff) | |
parent | Fix up some multi-monitor issues with Lumina2 (Qt auto-scaling is a really ba... (diff) | |
download | lumina-4a4d63f45cfc8fe0b0495615e399b57c41713d06.tar.gz lumina-4a4d63f45cfc8fe0b0495615e399b57c41713d06.tar.bz2 lumina-4a4d63f45cfc8fe0b0495615e399b57c41713d06.zip |
Merge branch 'master' of https://github.com/trueos/lumina
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/main.cpp')
-rw-r--r-- | src-qt5/core/lumina-desktop-unified/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/main.cpp b/src-qt5/core/lumina-desktop-unified/main.cpp index 0b67de46..8e40f7eb 100644 --- a/src-qt5/core/lumina-desktop-unified/main.cpp +++ b/src-qt5/core/lumina-desktop-unified/main.cpp @@ -30,6 +30,8 @@ int main(int argc, char ** argv) 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_AUTO_SCREEN_SCALE_FACTOR"); //need exact-pixel measurements (no fake scaling) + //Startup the session if(DEBUG){ qDebug() << "Starting unified session"; } LSession a(argc, argv); |