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/kde4-workspace | |
parent | update apache-ssl patch to 1.52. (diff) |
Add a patch that should fix the "A window and A desktop icon sometimes have
keyboard focus at the same time".
No PORTREVISION bump, since only very few people noticed this.
Reported by: arved, dwhite, Andy Fawcett
Obtained from: bugs.kde.org
Notes
Notes:
svn path=/head/; revision=94460
Diffstat (limited to 'x11/kde4-workspace')
-rw-r--r-- | x11/kde4-workspace/files/patch-kdesktop-lockeng.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11/kde4-workspace/files/patch-kdesktop-lockeng.cc b/x11/kde4-workspace/files/patch-kdesktop-lockeng.cc new file mode 100644 index 000000000000..9841e698ec06 --- /dev/null +++ b/x11/kde4-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; + } + |