discomfitor pushed a commit to branch enlightenment-0.22. http://git.enlightenment.org/core/enlightenment.git/commit/?id=23a91a44987955a1c15663e38d0a4f5df2aab46b
commit 23a91a44987955a1c15663e38d0a4f5df2aab46b Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Sun Nov 26 00:28:31 2017 +0900 e client - fix initial placement of override redirect windows in x.... several override redirect windows are being forcibly re-placed by e. they should not be. ever. this affects scim's IM panel i see and chromium's menus. it probably affects more than this. this fixes both of these cases for sure. probably more. @fix --- src/bin/e_comp_x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index a133f2a6a..97518c59e 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -3756,6 +3756,7 @@ _e_comp_x_hook_client_fetch(void *d EINA_UNUSED, E_Client *ec) &ec->icccm.max_aspect)) { ec->icccm.request_pos = request_pos; + if (ec->override) ec->placed = EINA_TRUE; if (request_pos && (!ec->placed) && (!ec->re_manage)) { Ecore_X_Window_Attributes *att; --
