diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-17 20:06:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-17 20:06:16 +0000 |
| commit | 5fa443efc8f85a2365c1043c547ac2168a294575 (patch) | |
| tree | 1dbc10e7e47d3f9310ed52cbec65141cdda70119 /openbox | |
| parent | 50f631b9a7ba95ecf18c0d989fe8f51800b0e625 (diff) | |
oops, logic error
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index 92489827..7c29f9f2 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -417,7 +417,7 @@ void client_manage(Window window) /* Don't steal focus from globally active clients. I stole this idea from KWin. It seems nice. */ - if (!focus_client->can_focus && focus_client->focus_notify) + if (!(focus_client->can_focus || focus_client->focus_notify)) activate = FALSE; } |
