diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-02-11 18:17:45 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-02-11 18:17:45 (GMT) |
commit | 611b6aa57e34ed8e52cb6b88c9adbafe4d67c6e2 (patch) | |
tree | 0d8edbf9e0356f7f93e87ca6970f684aabaae419 /src/Screen.cc | |
parent | cd128d7a3e19e0608b992d5211d7ea88a73ed3cd (diff) | |
download | fluxbox-611b6aa57e34ed8e52cb6b88c9adbafe4d67c6e2.zip fluxbox-611b6aa57e34ed8e52cb6b88c9adbafe4d67c6e2.tar.bz2 |
more fun with the window menu
Diffstat (limited to 'src/Screen.cc')
-rw-r--r-- | src/Screen.cc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index a97f1aa..bf5a625 100644 --- a/src/Screen.cc +++ b/src/Screen.cc | |||
@@ -832,11 +832,8 @@ void BScreen::propertyNotify(Atom atom) { | |||
832 | } | 832 | } |
833 | 833 | ||
834 | void BScreen::keyPressEvent(XKeyEvent &ke) { | 834 | void BScreen::keyPressEvent(XKeyEvent &ke) { |
835 | WinClient *old = WindowCmd<void>::client(); | ||
836 | WindowCmd<void>::setWindow(FocusControl::focusedFbWindow()); | ||
837 | Fluxbox::instance()->keys()->doAction(ke.type, ke.state, ke.keycode, | 835 | Fluxbox::instance()->keys()->doAction(ke.type, ke.state, ke.keycode, |
838 | Keys::GLOBAL|Keys::ON_DESKTOP); | 836 | Keys::GLOBAL|Keys::ON_DESKTOP); |
839 | WindowCmd<void>::setClient(old); | ||
840 | } | 837 | } |
841 | 838 | ||
842 | void BScreen::keyReleaseEvent(XKeyEvent &ke) { | 839 | void BScreen::keyReleaseEvent(XKeyEvent &ke) { |
@@ -855,11 +852,8 @@ void BScreen::buttonPressEvent(XButtonEvent &be) { | |||
855 | imageControl().installRootColormap(); | 852 | imageControl().installRootColormap(); |
856 | 853 | ||
857 | Keys *keys = Fluxbox::instance()->keys(); | 854 | Keys *keys = Fluxbox::instance()->keys(); |
858 | WinClient *old = WindowCmd<void>::client(); | ||
859 | WindowCmd<void>::setWindow(FocusControl::focusedFbWindow()); | ||
860 | keys->doAction(be.type, be.state, be.button, Keys::GLOBAL|Keys::ON_DESKTOP, | 855 | keys->doAction(be.type, be.state, be.button, Keys::GLOBAL|Keys::ON_DESKTOP, |
861 | be.time); | 856 | 0, be.time); |
862 | WindowCmd<void>::setClient(old); | ||
863 | } | 857 | } |
864 | 858 | ||
865 | void BScreen::notifyUngrabKeyboard() { | 859 | void BScreen::notifyUngrabKeyboard() { |