diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-23 15:21:04 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-23 15:21:04 -0600 |
commit | b45137ace06b893d9ff65b2d45fba978cb4f26ce (patch) | |
tree | cd48a758746d356c98a141b5a3cc3f11c4248efe /kdesktop | |
parent | ca1a4375014b6f78a06c74169a1285abbcbcd819 (diff) | |
download | tdebase-b45137ace06b893d9ff65b2d45fba978cb4f26ce.tar.gz tdebase-b45137ace06b893d9ff65b2d45fba978cb4f26ce.zip |
Fix incomplete commits 98ead41b and 678bea5b
Diffstat (limited to 'kdesktop')
-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 4edd1b321..93206951d 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(); } |