X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fclient.c;h=c8f006055b8022bd277fa96771d83b54fb854316;hb=4bec1c07db9245eb58de04d2f80552a7bcc0f74e;hp=75aecf41f630500d154f15e90b0655b06d48cd80;hpb=c20a8d986a3a87dd345bede8e3b6c08e39a89485;p=chaz%2Fopenbox diff --git a/openbox/client.c b/openbox/client.c index 75aecf41..c8f00605 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -2505,12 +2505,17 @@ gboolean client_focus(ObClient *self) return FALSE; } - if (self->can_focus) + 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 - are left. (I hate X. I hate focus events.) */ - XSetInputFocus(ob_display, self->window, RevertToPointerRoot, + are left. (I hate X. I hate focus events.) + + Update: Changing this to RevertToNone fixed a bug with mozilla (bug + #799. So now it is RevertToNone again. + */ + XSetInputFocus(ob_display, self->window, RevertToNone, event_lasttime); + } if (self->focus_notify) { XEvent ce;