Hopefully fixed focus problems when handling a global hotkey on X11.
See this thread for details: https://bugzilla.mozilla.org/show_bug.cgi?id=578265
This commit is contained in:
parent
20f5652c62
commit
81d9c8177b
1 changed files with 7 additions and 0 deletions
|
@ -408,6 +408,13 @@ X11_DispatchEvent(_THIS)
|
|||
|
||||
/* Losing input focus? */
|
||||
case FocusOut:{
|
||||
if (xevent.xfocus.mode == NotifyGrab) {
|
||||
/* Someone is handling a global hotkey, ignore it */
|
||||
#ifdef DEBUG_XEVENTS
|
||||
printf("window %p: FocusOut (NotifyGrab, ignoring)\n", data);
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
if (xevent.xfocus.detail == NotifyInferior) {
|
||||
/* We still have focus if a child gets focus */
|
||||
#ifdef DEBUG_XEVENTS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue