diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-15 17:38:52 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-15 17:38:52 +0000 |
| commit | d30809e5faf681a00035d9913a762f25db8de6b5 (patch) | |
| tree | 87c0473ba291affb368c2fdaeab41f5e62660150 /openbox/screen.c | |
| parent | d3e524420f87b3aedaf3076f3677cb1c3213f06f (diff) | |
always ignore errors for client_focus like we used to.
Diffstat (limited to 'openbox/screen.c')
| -rw-r--r-- | openbox/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 23821301..45246297 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -942,7 +942,7 @@ void screen_show_desktop(gboolean show, ObClient *show_only) ObClient *c = it->data; if (c->type == OB_CLIENT_TYPE_DESKTOP && (c->desktop == screen_desktop || c->desktop == DESKTOP_ALL) && - client_focus(it->data, FALSE)) + client_focus(it->data)) break; } } |
