aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LSession.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-25 15:57:18 -0400
committerKen Moore <ken@pcbsd.org>2015-04-25 15:57:18 -0400
commit3f3300e746224a7768cee4b3e7b7634a3d033f39 (patch)
tree0f5f41feec6167e0af1e0d680f1c9fbcf2abb835 /lumina-desktop/LSession.cpp
parentFix another bug with the new panel/window activation switcher: do *not* re-ac... (diff)
downloadlumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.tar.gz
lumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.tar.bz2
lumina-3f3300e746224a7768cee4b3e7b7634a3d033f39.zip
Add (but disable by default) some additional debuggin information. Also turn off the debugging for the session/desktop/panel classes by default.
Diffstat (limited to 'lumina-desktop/LSession.cpp')
-rw-r--r--lumina-desktop/LSession.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/LSession.cpp b/lumina-desktop/LSession.cpp
index e2424fcd..5b223ad7 100644
--- a/lumina-desktop/LSession.cpp
+++ b/lumina-desktop/LSession.cpp
@@ -24,7 +24,7 @@
#include <X11/extensions/Xdamage.h>
#ifndef DEBUG
-#define DEBUG 1
+#define DEBUG 0
#endif
XCBEventFilter *evFilter = 0;
bgstack15