aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LXcbEventFilter.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-18 11:30:13 -0400
committerKen Moore <moorekou@gmail.com>2015-09-18 11:30:13 -0400
commit17963f47081fe7559854e633635f10d4b6062a58 (patch)
tree32e7aa88305892ce3f0ee48df49c2d924e2be8ce /lumina-desktop/LXcbEventFilter.cpp
parentClean up a little bit of the URL syntax handling in lumina-open. Now it will ... (diff)
downloadlumina-17963f47081fe7559854e633635f10d4b6062a58.tar.gz
lumina-17963f47081fe7559854e633635f10d4b6062a58.tar.bz2
lumina-17963f47081fe7559854e633635f10d4b6062a58.zip
Turn off a bunch of debugging for the lumina-desktop, and adjust the desktopview plugin a bit more.
Diffstat (limited to 'lumina-desktop/LXcbEventFilter.cpp')
-rw-r--r--lumina-desktop/LXcbEventFilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-desktop/LXcbEventFilter.cpp b/lumina-desktop/LXcbEventFilter.cpp
index aa38002b..f7a11dad 100644
--- a/lumina-desktop/LXcbEventFilter.cpp
+++ b/lumina-desktop/LXcbEventFilter.cpp
@@ -96,9 +96,9 @@ bool XCBEventFilter::nativeEventFilter(const QByteArray &eventType, void *messag
//==============================
default:
if(TrayDmgFlag!=0){
- //if( (ev->response_type & ~0x80)==TrayDmgFlag){
+ if( (ev->response_type & ~0x80)==TrayDmgFlag){
session->WindowDamageEvent( ((xcb_damage_notify_event_t*)ev)->drawable );
- //}
+ }
}/*else{
qDebug() << "Default Event:" << (ev->response_type & ~0x80);
}*/
bgstack15