diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-08-14 05:53:32 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-08-14 05:53:32 +0000 |
| commit | 60bf9dcdb752aa282e1ffd7bbb359df4a4c78e77 (patch) | |
| tree | 857915ab6b2f7271e6e9de3f467e987a5bfc307f /openbox/action.c | |
| parent | 99d0b716776492c1927b8248375ce82a33bc7b26 (diff) | |
make the activate action have a 'here' parameter
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/action.c b/openbox/action.c index 6668ac5a..7e8da744 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -742,8 +742,8 @@ void action_execute(union ActionData *data) void action_activate(union ActionData *data) { - if (data->client.c) - client_activate(data->client.c); + if (data->activate.c) + client_activate(data->activate.c, data->activate.here); } void action_focus(union ActionData *data) @@ -1219,7 +1219,7 @@ void action_directional_focus(union ActionData *data) return; if ((nf = client_find_directional(data->diraction.c, data->diraction.direction))) - client_activate(nf); + client_activate(nf, FALSE); } void action_movetoedge(union ActionData *data) |
