summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKimmo Hämäläinen <kimmo.hamalainen@nokia.com>2011-01-14 18:01:40 +0200
committerKimmo Hämäläinen <kimmo.hamalainen@nokia.com>2011-01-14 18:01:40 +0200
commit45cbc3b55d793523121337f26158114b8def0026 (patch)
tree2dde9ca25395a88ff0ded033b0fa0f442e1be570
parent3851804a3f2228eaad5f82b14d28e8bd4d07a23f (diff)
Fixes: NB#187924 - Status area doesn't update while Field Test Display in use
- pass unhandled X events to MApplication, fix from Jarek Jaryszew
-rw-r--r--decorators/mdecorator/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/decorators/mdecorator/main.cpp b/decorators/mdecorator/main.cpp
index 95eb034..031ebd7 100644
--- a/decorators/mdecorator/main.cpp
+++ b/decorators/mdecorator/main.cpp
@@ -28,7 +28,13 @@ public:
window.show();
}
- virtual bool x11EventFilter(XEvent *e) { return window.x11Event(e); }
+ virtual bool x11EventFilter(XEvent *e)
+ {
+ bool ret = window.x11Event(e);
+ if (!ret)
+ ret = MApplication::x11EventFilter(e);
+ return ret;
+ }
private:
MDecoratorWindow window;