aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config
diff options
context:
space:
mode:
authorq5sys <jt@obs-sec.com>2017-07-31 09:05:12 -0400
committerq5sys <jt@obs-sec.com>2017-07-31 09:05:12 -0400
commit8df5f8781dfdc985304d97ac593e073c85ce4831 (patch)
treeebf1d77f4e3251ee06b29d805cab7f345c6d1526 /src-qt5/core-utils/lumina-config
parent2nd attempt at wm selection patch (diff)
parentCleanup the "fluxbox" detection for window manager settings. (diff)
downloadlumina-8df5f8781dfdc985304d97ac593e073c85ce4831.tar.gz
lumina-8df5f8781dfdc985304d97ac593e073c85ce4831.tar.bz2
lumina-8df5f8781dfdc985304d97ac593e073c85ce4831.zip
Merge branch 'master' of https://github.com/trueos/lumina
Diffstat (limited to 'src-qt5/core-utils/lumina-config')
-rw-r--r--src-qt5/core-utils/lumina-config/pages/page_session_options.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp b/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp
index e4218b88..44a67c3a 100644
--- a/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp
+++ b/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp
@@ -33,6 +33,7 @@ page_session_options::page_session_options(QWidget *parent) : PageWidget(parent)
connect(ui->check_session_playlogoutaudio, SIGNAL(toggled(bool)), this, SLOT(settingChanged()) );
connect(ui->check_autoapplinks, SIGNAL(toggled(bool)), this, SLOT(settingChanged()) );
connect(ui->check_watch_app_procs, SIGNAL(toggled(bool)), this, SLOT(settingChanged()) );
+ connect(ui->mywindowmanager, SIGNAL(currentIndexChanged(int)), this, SLOT(settingChanged()));
updateIcons();
}
bgstack15