aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-07-06 13:44:12 -0400
committerKen Moore <moorekou@gmail.com>2016-07-06 13:44:12 -0400
commit5910f0210ee478f2c057b5b8134adc3a02f75c66 (patch)
tree9587053784c10dd10eb2486d15266ed23c45c364 /src-qt5/core
parentDisable fluxbox initialization within the lumina-desktop binary. (moved to st... (diff)
parentFix up the reloading of compton when the config file changes. (diff)
downloadlumina-5910f0210ee478f2c057b5b8134adc3a02f75c66.tar.gz
lumina-5910f0210ee478f2c057b5b8134adc3a02f75c66.tar.bz2
lumina-5910f0210ee478f2c057b5b8134adc3a02f75c66.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-session/session.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-session/session.h b/src-qt5/core/lumina-session/session.h
index 0bace416..4ae01f85 100644
--- a/src-qt5/core/lumina-session/session.h
+++ b/src-qt5/core/lumina-session/session.h
@@ -32,7 +32,7 @@ public:
LProcess(QString ID, QStringList watchfiles) : QProcess(){
id=ID;
watcher = 0;
- if(watchfiles.isEmpty()){
+ if(!watchfiles.isEmpty()){
watcher = new QFileSystemWatcher(this);
connect(watcher, SIGNAL(fileChanged(QString)), this, SLOT(filechanged(QString)) );
connect(watcher, SIGNAL(directoryChanged(QString)), this, SLOT(filechanged(QString)) );
bgstack15