discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=d840583263baafdf4fe255acc2eb0860718a763c
commit d840583263baafdf4fe255acc2eb0860718a763c Author: Mike Blumenkrantz <[email protected]> Date: Thu Feb 20 11:22:57 2014 -0500 don't show pager urgent popups for focusing clients --- src/modules/pager/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/pager/e_mod_main.c b/src/modules/pager/e_mod_main.c index 5f6b63f..0715c82 100644 --- a/src/modules/pager/e_mod_main.c +++ b/src/modules/pager/e_mod_main.c @@ -1406,7 +1406,7 @@ _pager_cb_event_client_urgent_change(void *data __UNUSED__, int type __UNUSED__, urgent = ev->ec->icccm.urgent; if (pager_config->popup_urgent && (pager_config->popup_urgent_focus || - (!pager_config->popup_urgent_focus && !ev->ec->focused))) + ((!pager_config->popup_urgent_focus) && (!ev->ec->focused) && (!ev->ec->want_focus)))) { pp = _pager_popup_find(zone); --
