diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-23 22:28:12 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-23 22:28:12 +0000 |
| commit | cd32e79e35652d76a50384100f47cf1508bf6ac0 (patch) | |
| tree | 2365adc30abfaab8815ad1cd736d39ee7ec76f32 | |
| parent | 77e09830c582bc76f3f264ff892a19c6c8b91f22 (diff) | |
export its options and use them from the rc file
| -rw-r--r-- | plugins/focus.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/focus.c b/plugins/focus.c index db0a2b33..da76e98c 100644 --- a/plugins/focus.c +++ b/plugins/focus.c @@ -166,8 +166,9 @@ static void event(ObEvent *e, void *foo) --skip_enter; } else*/ - if (e->data.x.client != NULL && client_normal(e->data.x.client)) - client_focus(e->data.x.client); + if (follow_mouse.bool) + if (e->data.x.client != NULL && client_normal(e->data.x.client)) + client_focus(e->data.x.client); break; default: |
