diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-13 21:47:39 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-13 21:47:39 +0000 |
| commit | fd1b33af0d93c2e06dd6fc25e7644c924d3c6597 (patch) | |
| tree | 2b296a5edc3c9321953ee8c103548015a43cbc6f /openbox | |
| parent | 58ba751ab71e99202b1f8d2c5d8dd75373a50905 (diff) | |
onyl focus 'normal' windows on map
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 519c41b9..63619e71 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -238,7 +238,7 @@ void client_manage(Window window) dispatch_client(Event_Client_Mapped, self, 0, 0); /* focus the new window? */ - if (ob_state != State_Starting) { + if (ob_state != State_Starting && client_normal(self)) { if (config_focus_new) client_focus(self); else if (self->transient_for) { |
