diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-18 00:11:01 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-18 00:11:01 +0000 |
| commit | 6d2650263193aaa7e94b29261c6ba249c0be3fd3 (patch) | |
| tree | 0ab47d2b93b22af9d583a6e1b1636082030763da /openbox/action.c | |
| parent | 9451205cf172d088948d40999e85ad07c3d430dd (diff) | |
super correct enter event ignoring that will only ignore what it has to, yay?
Diffstat (limited to 'openbox/action.c')
| -rw-r--r-- | openbox/action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/action.c b/openbox/action.c index 0a2d2b62..2fd0372a 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -46,8 +46,8 @@ static void client_action_end(union ActionData *data) { if (config_focus_follow) if (data->any.context != OB_FRAME_CONTEXT_CLIENT) { - if (!data->any.button) { - event_ignore_queued_enters(); + if (!data->any.button && data->any.c) { + event_ignore_enters_leaving_window(data->any.c); } else { ObClient *c; |
