aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-22 13:01:23 -0400
committerKen Moore <ken@pcbsd.org>2014-10-22 13:01:23 -0400
commitfd9fee15df50c05dd8cf9c8335283b04ee4cff30 (patch)
tree0be0ab2b600e6642aea993db6c433b2f43b8f9b9
parentFix another possible crash in the system tray: when a tray icon fails to get ... (diff)
downloadlumina-fd9fee15df50c05dd8cf9c8335283b04ee4cff30.tar.gz
lumina-fd9fee15df50c05dd8cf9c8335283b04ee4cff30.tar.bz2
lumina-fd9fee15df50c05dd8cf9c8335283b04ee4cff30.zip
Remove the requirement for the "native" graphics engine in Qt for the desktop session. This causes all sorts of graphics issues when the desktop is run through a VNC.
Note: Now the desktop will look fine through a VNC, but the system tray icons may have broken transparency (only through a VNC from what I can tell). This is quite a bit better now, but needs to be looked into more at a later date.
-rw-r--r--lumina-desktop/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/main.cpp b/lumina-desktop/main.cpp
index 56071835..5ebe6bee 100644
--- a/lumina-desktop/main.cpp
+++ b/lumina-desktop/main.cpp
@@ -56,7 +56,7 @@ int main(int argc, char ** argv)
LXDG::setEnvironmentVars();
setenv("DESKTOP_SESSION","LUMINA",1);
setenv("XDG_CURRENT_DESKTOP","LUMINA",1);
- LSession::setGraphicsSystem("native"); //make sure to use X11 graphics system
+ //LSession::setGraphicsSystem("native"); //make sure to use X11 graphics system
//Setup the log file
qDebug() << "Lumina Log File:" << logfile.fileName();
if(logfile.exists()){ logfile.remove(); } //remove any old one
bgstack15