diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-14 15:51:21 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-14 15:51:21 +0000 |
| commit | adc5675823de8e3bbe94a1419b04103c6f845dad (patch) | |
| tree | 3501639a27955897151a5e5b44a2e0190216fa5c /openbox/action.c | |
| parent | 768ce7b456fb7455c39bc275b71af381d635ac0a (diff) | |
oh, 2 things in this commit..
1) THIS ONE IS IMPORTANT: don't set client->iconfied if the window is not actually going to be allowed to iconify. heh!
2) changes to focus fallback to avoid crashing and to avoid losing focus all at the same time.
Diffstat (limited to 'openbox/action.c')
| -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 6d455f1f..73524ae4 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -1172,7 +1172,7 @@ void action_focus(union ActionData *data) void action_unfocus (union ActionData *data) { if (data->client.any.c == focus_client) - focus_fallback(OB_FOCUS_FALLBACK_UNFOCUSING); + focus_fallback(FALSE); } void action_iconify(union ActionData *data) |
