TODO: add bell event (or generic event to act on such controls).
- nuke reconf script, serves no purpose anymore.
+ - do not process focus events caused by grabs
+ (patch by Mikachu).
8.2 Sat Feb 17 21:35:28 CET 2007
- fix make depend in src/, reported by exg.
break;
case FocusIn:
- if (ev.xfocus.detail != NotifyInferior && ev.xfocus.detail != NotifyPointer)
+ if (ev.xfocus.detail != NotifyInferior
+ && ev.xfocus.detail != NotifyPointer
+ && ev.xfocus.mode != NotifyGrab)
focus_in ();
break;
case FocusOut:
- if (ev.xfocus.detail != NotifyInferior && ev.xfocus.detail != NotifyPointer)
+ if (ev.xfocus.detail != NotifyInferior
+ && ev.xfocus.detail != NotifyPointer
+ && ev.xfocus.mode != NotifyGrab)
focus_out ();
break;