aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-16 22:49:58 -0400
committerKen Moore <ken@pcbsd.org>2015-04-16 22:49:58 -0400
commitaeba6cb5554186478d15cbfc7a9ac580d3c52c72 (patch)
tree9baa36ce1136bba09ca0709a843060d2db686ec6 /lumina-desktop/LSession.h
parentClean up a *lot* of the general XCB warnings that sometimes occur, and also t... (diff)
downloadlumina-aeba6cb5554186478d15cbfc7a9ac580d3c52c72.tar.gz
lumina-aeba6cb5554186478d15cbfc7a9ac580d3c52c72.tar.bz2
lumina-aeba6cb5554186478d15cbfc7a9ac580d3c52c72.zip
Fix the session chimes (and possible stability issue) by removing the special audio thread and using the QMediaPlayer within the main thread (no stuttering/delays in my initial tests so far).
Add a PC-BSD specific routine for setting brightness so that hardware brightness controls are attempted (through pc-sysconfig) before the software brightness is modified (using xbrightness)
Diffstat (limited to 'lumina-desktop/LSession.h')
-rw-r--r--lumina-desktop/LSession.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.h b/lumina-desktop/LSession.h
index 4c9ea15e..5baf72c4 100644
--- a/lumina-desktop/LSession.h
+++ b/lumina-desktop/LSession.h
@@ -97,7 +97,7 @@ private:
SettingsMenu *settingsmenu;
QTranslator *currTranslator;
QMediaPlayer *mediaObj;
- QThread *audioThread;
+ //QThread *audioThread;
QSettings *sessionsettings;
bool cleansession;
bgstack15