This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch v-0.27
in repository enlightenment.
View the commit online.
commit eceda87e46c8f23808a98ef1bc900b17e7feeaf8
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Jan 27 10:26:59 2025 +0000
fix previous fix - only restack if force unfullscreening
missed another extra case - only do it if we unfullscreened a window
forcibly when switching focus.
also fixes #74
@fix
---
src/bin/e_client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/bin/e_client.c b/src/bin/e_client.c
index d2de310c6..3104c468f 100644
--- a/src/bin/e_client.c
+++ b/src/bin/e_client.c
@@ -3919,7 +3919,7 @@ e_client_focused_set(E_Client *ec)
}
}
- if ((ec) && (ec_unfocus))
+ if ((ec) && (ec_unfocus) && (ec_unfocus->unfullscreen_forced))
evas_object_stack_above(ec->frame, ec_unfocus->frame);
_e_client_hook_call(E_CLIENT_HOOK_FOCUS_UNSET, ec_unfocus);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.