diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 18:44:27 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 18:44:27 +0000 |
| commit | d1d84711a2684c47c688cc7d015741bd484151fb (patch) | |
| tree | 9cb4fafd89dafeac58d4d4da4628ce733d59f8dd /plugins | |
| parent | 120623d34e0cb86b4970e9744a10ba39cd5e21b7 (diff) | |
replace the focus_backup with the screen_support_win, we dont need 2 offscreen windows.
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/keyboard/keyboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/keyboard/keyboard.c b/plugins/keyboard/keyboard.c index 0fc43e83..caee0dc1 100644 --- a/plugins/keyboard/keyboard.c +++ b/plugins/keyboard/keyboard.c @@ -1,4 +1,5 @@ #include "kernel/focus.h" +#include "kernel/screen.h" #include "kernel/frame.h" #include "kernel/dispatch.h" #include "kernel/openbox.h" @@ -103,7 +104,7 @@ static void grab_keys(gboolean grab) { GList *it; - grab_for_window(focus_backup, grab); + grab_for_window(screen_support_win, grab); for (it = client_list; it; it = g_list_next(it)) grab_for_window(((ObClient*)it->data)->frame->window, grab); } |
