aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages/page_compton.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-05-23 12:04:34 -0400
committerKen Moore <ken@ixsystems.com>2017-05-23 12:04:34 -0400
commit642fafbcf30fcf2887f41ea6d2eff9b63447b32c (patch)
tree9c296dddc7124ea3a24267f23949f9e373dc1a3c /src-qt5/core-utils/lumina-config/pages/page_compton.cpp
parentAdjust the run_depends of the x11/lumina-core port a bit to try and ensure it... (diff)
downloadlumina-642fafbcf30fcf2887f41ea6d2eff9b63447b32c.tar.gz
lumina-642fafbcf30fcf2887f41ea6d2eff9b63447b32c.tar.bz2
lumina-642fafbcf30fcf2887f41ea6d2eff9b63447b32c.zip
Switch the usage of compton: default to it being disabled rather than enabled (too many false-positives from the GPU acceleration verification routine).
Diffstat (limited to 'src-qt5/core-utils/lumina-config/pages/page_compton.cpp')
-rw-r--r--src-qt5/core-utils/lumina-config/pages/page_compton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/page_compton.cpp b/src-qt5/core-utils/lumina-config/pages/page_compton.cpp
index 4f7b90ae..3b61869f 100644
--- a/src-qt5/core-utils/lumina-config/pages/page_compton.cpp
+++ b/src-qt5/core-utils/lumina-config/pages/page_compton.cpp
@@ -36,7 +36,7 @@ void page_compton::SaveSettings(){
void page_compton::LoadSettings(int){
emit ChangePageTitle( tr("Window Effects") );
QSettings settings("lumina-desktop","sessionsettings");
- ui->check_disablecompton->setChecked( !settings.value("enableCompositing", true).toBool() );
+ ui->check_disablecompton->setChecked( !settings.value("enableCompositing", false).toBool() );
ui->check_GPUverify->setChecked( settings.value("compositingWithGpuAccelOnly", true).toBool() );
QString set = QString(getenv("XDG_CONFIG_HOME"))+"/lumina-desktop/compton.conf";
qDebug() << "Load Compton settings:" << set;
bgstack15