all repos — openbox @ d20f84f5ded581c57df5904c6fa550dac05ad036

openbox fork - make it a bit more like ryudo

more handling time wraparounds
Dana Jansens danakj@orodu.net
commit

d20f84f5ded581c57df5904c6fa550dac05ad036

parent

339d76704400a6ea514817d91a2e935a13ecc928

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M openbox/client.copenbox/client.c

@@ -414,8 +414,11 @@ activate = TRUE;

else { /* If time stamp is old, don't steal focus */ - if (self->user_time && self->user_time < client_last_user_time) + if (self->user_time && + !event_time_after(self->user_time, client_last_user_time)) + { activate = FALSE; + } /* Don't steal focus from globally active clients. I stole this idea from KWin. It seems nice. */