cedric pushed a commit to branch enlightenment-0.17. http://git.enlightenment.org/core/enlightenment.git/commit/?id=81b59487a338ad4bbddfd0660bcbe6cab97b78e5
commit 81b59487a338ad4bbddfd0660bcbe6cab97b78e5 Author: Mike Blumenkrantz <[email protected]> Date: Mon Aug 19 10:00:13 2013 +0100 fix raise on focus setting --- src/bin/e_focus.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/e_focus.c b/src/bin/e_focus.c index 7bd6068..8f5c84d 100644 --- a/src/bin/e_focus.c +++ b/src/bin/e_focus.c @@ -126,6 +126,11 @@ e_focus_event_focus_in(E_Border *bd) e_bindings_wheel_grab(E_BINDING_CONTEXT_WINDOW, bd->win); bd->button_grabbed = 0; } + if (!bd->lock_user_stacking) + { + if (e_config->border_raise_on_focus) + e_border_raise(bd); + } } EAPI void --
