diff options
author | Carsten Haitzler <raster@rasterman.com> | 2013-01-08 11:03:55 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2013-01-08 11:03:55 +0000 |
commit | 27624264ee1b3ad0f23c487a7041f3a67de75f5e (patch) | |
tree | 8a9caa77e397abb4cd51b20615043418a456c2db /src/bin | |
parent | da18b48e08ec5e65a8bc72149e0f5f0a7c866ca2 (diff) | |
download | enlightenment-27624264ee1b3ad0f23c487a7041f3a67de75f5e.tar.gz |
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
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/e_manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/e_manager.c b/src/bin/e_manager.c index 2cf28a8daf..eaaec3f368 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); } |