diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-15 19:02:00 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-15 19:02:00 -0400 |
commit | 043cb2ef441b4ee46961ed837fedab082db14ceb (patch) | |
tree | 8f070d92e9b589d2cce1b1f522dfaac0d4ca6631 /lumina-desktop/LXcbEventFilter.cpp | |
parent | Adjust the theming of the calendar widgets so that the day/week are a bit mor... (diff) | |
download | lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.gz lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.tar.bz2 lumina-043cb2ef441b4ee46961ed837fedab082db14ceb.zip |
Finally fix up the system tray updates:
Found out that (at least on FreeBSD 10.2 right now), the xcb_damage_create() routine does absolutely nothing (no damage events ever sent out when the window changes). Switching this back to the Xlib XDamageCreate() routine makes it work perfectly again. Need to ask about this upstream and see if this is a known bug/regression in the XCB libraries.
Diffstat (limited to 'lumina-desktop/LXcbEventFilter.cpp')
-rw-r--r-- | lumina-desktop/LXcbEventFilter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/LXcbEventFilter.cpp b/lumina-desktop/LXcbEventFilter.cpp index a3a8147b..aa38002b 100644 --- a/lumina-desktop/LXcbEventFilter.cpp +++ b/lumina-desktop/LXcbEventFilter.cpp @@ -31,6 +31,7 @@ bool XCBEventFilter::nativeEventFilter(const QByteArray &eventType, void *messag if(stopping){ return false; } //don't do any parsing //qDebug() << "New Event"; if(eventType=="xcb_generic_event_t"){ + //qDebug() << " - XCB event"; //Convert to known event type (for X11 systems) xcb_generic_event_t *ev = static_cast<xcb_generic_event_t *>(message); //Now parse the event and emit signals as necessary |