diff options
author | Ken Moore <moorekou@gmail.com> | 2016-07-06 13:44:12 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-07-06 13:44:12 -0400 |
commit | 5910f0210ee478f2c057b5b8134adc3a02f75c66 (patch) | |
tree | 9587053784c10dd10eb2486d15266ed23c45c364 /src-qt5/core | |
parent | Disable fluxbox initialization within the lumina-desktop binary. (moved to st... (diff) | |
parent | Fix up the reloading of compton when the config file changes. (diff) | |
download | lumina-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.h | 2 |
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)) ); |