X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient.c;h=a9a9eb5fa1c88e9370ecca098fce4f372b22f10a;hb=795d90c3bc57eaf2c98c447f3af5c1c9e7a52fa3;hp=beb5c98656dfdbad3c39f768fdd662099b0028fc;hpb=4cb48bebb5e13224c0f272809914de679cf395e1;p=chaz%2Fopenbox diff --git a/openbox/client.c b/openbox/client.c index beb5c986..a9a9eb5f 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2240,38 +2240,14 @@ Client *client_focus_target(Client *self) } gboolean client_can_focus(Client *self) -{ - /* same code as in client_focus */ - - /* choose the correct target */ - self = client_focus_target(self); - - if (!self->frame->visible) - return FALSE; - - if (!((self->can_focus || self->focus_notify) && - (self->desktop == screen_desktop || - self->desktop == DESKTOP_ALL) && - !self->iconic)) - return FALSE; - - return TRUE; -} - -gboolean client_focus(Client *self) { XEvent ev; - /* same code as in client_can_focus */ - /* choose the correct target */ self = client_focus_target(self); - if (!self->frame->visible) { - /* update the focus lists */ - focus_order_to_top(self); + if (!self->frame->visible) return FALSE; - } if (!((self->can_focus || self->focus_notify) && (self->desktop == screen_desktop || @@ -2297,6 +2273,22 @@ gboolean client_focus(Client *self) } } + return TRUE; +} + +gboolean client_focus(Client *self) +{ + /* choose the correct target */ + self = client_focus_target(self); + + if (!client_can_focus(self)) { + if (!self->frame->visible) { + /* update the focus lists */ + focus_order_to_top(self); + } + return FALSE; + } + if (self->can_focus) /* RevertToPointerRoot causes much more headache than RevertToNone, so I choose to use it always, hopefully to find errors quicker, if any