diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-13 22:12:11 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-13 22:12:11 +0000 |
| commit | 49b6e6ac0a10ffbe5c4e48d69494315da0c0351d (patch) | |
| tree | 7ea9f713e7defef8c55c2edcb09a4fd8b70202f2 | |
| parent | 3e5ac075574e0ea9e0a2d2ae0bc117385d0cbc96 (diff) | |
let unfocus action go back to the same window. you should be doing some other action above it that will change where focus can end up
| -rw-r--r-- | openbox/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/action.c b/openbox/action.c index 0f1a04d2..8c8064f8 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1309,7 +1309,7 @@ void action_focus(union ActionData *data) void action_unfocus (union ActionData *data) { if (data->client.any.c == focus_client) - focus_fallback(FALSE); + focus_fallback(TRUE); } void action_iconify(union ActionData *data) |
