From 44068385780a675e5181730733df308c138c78ff Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 23 Feb 2012 15:21:04 -0600 Subject: [PATCH] Fix incomplete commits 678bea5b (cherry picked from commit b45137ace06b893d9ff65b2d45fba978cb4f26ce) --- kdesktop/lock/main.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kdesktop/lock/main.cc b/kdesktop/lock/main.cc index c05766e91..479760c73 100644 --- a/kdesktop/lock/main.cc +++ b/kdesktop/lock/main.cc @@ -53,6 +53,9 @@ bool in_internal_mode = FALSE; bool MyApp::x11EventFilter( XEvent *ev ) { + if (ev->type == ButtonPress || ev->type == ButtonRelease || ev->type == MotionNotify) { + emit mouseInteraction(ev); + } if (ev->type == XKeyPress || ev->type == ButtonPress) { emit activity(); }