diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-19 06:01:06 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-19 06:01:06 +0000 |
| commit | 597fad9d8d5b7be27cabeeec750ed15f86377a07 (patch) | |
| tree | 9a8c7e613ed09a7ff0f5333e7bee8768be7ebb35 /openbox/action.c | |
| parent | 7ea5ffea73c8924ee53b1a24d8db76518efb3fe3 (diff) | |
add focus actions
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/openbox/action.c b/openbox/action.c index b976a84d..dfcd8d7e 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -36,6 +36,16 @@ void action_execute(union ActionData *data) } } +void action_focus(union ActionData *data) +{ + client_focus(data->client.c); +} + +void action_unfocus (union ActionData *data) +{ + client_unfocus(data->client.c); +} + void action_iconify(union ActionData *data) { client_iconify(data->client.c, TRUE, TRUE); |
