From 27624264ee1b3ad0f23c487a7041f3a67de75f5e Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 8 Jan 2013 11:03:55 +0000 Subject: [PATCH] netwm actgivate requests simply do absoluttely nothing now with this as false. this breaks expected functionality from apps - that they request activation and eg - window is minimized... it gets shown at least. app here wants attention/activation... this is better than ignoring ti entirely. theres activation policy config specifically for turning this off separately. :/ SVN revision: 82402 --- src/bin/e_manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_manager.c b/src/bin/e_manager.c index 2cf28a8da..eaaec3f36 100644 --- a/src/bin/e_manager.c +++ b/src/bin/e_manager.c @@ -998,7 +998,7 @@ _e_manager_cb_client_message(void *data __UNUSED__, int ev_type __UNUSED__, void edje_object_signal_emit(bd->bg_object, "e,state,urgent", "e"); break; default: - if (!bd->focused) e_border_activate(bd, EINA_FALSE); + if (!bd->focused) e_border_activate(bd, EINA_TRUE); else e_border_raise(bd); }