diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-11-20 12:29:57 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-11-20 12:29:57 +0000 |
commit | fe5a380496f966d43386d8a817e13a9b0f867e62 (patch) | |
tree | f2b250c6fb5efdc471c35a0b7c0b5be142eee395 /x11/kdebase4-workspace | |
parent | af0934759d59f272cb9fe2579ce146e48e1673b4 (diff) | |
download | ports-fe5a380496f966d43386d8a817e13a9b0f867e62.tar.gz ports-fe5a380496f966d43386d8a817e13a9b0f867e62.zip |
Notes
Diffstat (limited to 'x11/kdebase4-workspace')
-rw-r--r-- | x11/kdebase4-workspace/files/patch-kdesktop-lockeng.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11/kdebase4-workspace/files/patch-kdesktop-lockeng.cc b/x11/kdebase4-workspace/files/patch-kdesktop-lockeng.cc new file mode 100644 index 000000000000..9841e698ec06 --- /dev/null +++ b/x11/kdebase4-workspace/files/patch-kdesktop-lockeng.cc @@ -0,0 +1,12 @@ +--- kdesktop/lockeng.cc.orig Fri Sep 26 11:28:03 2003 ++++ kdesktop/lockeng.cc Fri Sep 26 11:31:15 2003 +@@ -277,6 +277,9 @@ + { + if (!event->xkey.send_event && mXAutoLock && mState == Waiting) + mXAutoLock->keyPressed(); ++ // don't further process key events that were received only because XAutoLock wants them ++ if (!event->xkey.send_event && mXAutoLock && !QWidget::find( event->xkey.window )) ++ return true; + break; + } + |