diff options
author | Timothy Pearson <[email protected]> | 2012-02-23 15:21:04 -0600 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2012-06-03 03:26:54 +0200 |
commit | 44068385780a675e5181730733df308c138c78ff (patch) | |
tree | 21369d7dd7894dfcec427f426c7e9803da520d33 | |
parent | ff91f3f28fd55154fa39fa5f2f1228f532ce6f3c (diff) | |
download | tdebase-44068385780a675e5181730733df308c138c78ff.tar.gz tdebase-44068385780a675e5181730733df308c138c78ff.zip |
Fix incomplete commits 678bea5b
(cherry picked from commit b45137ace06b893d9ff65b2d45fba978cb4f26ce)
-rw-r--r-- | kdesktop/lock/main.cc | 3 |
1 files changed, 3 insertions, 0 deletions
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(); } |