discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=e1093c87ea2e5f82e28a1af96c3eb5d5dd7c4143
commit e1093c87ea2e5f82e28a1af96c3eb5d5dd7c4143 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Apr 21 16:14:47 2017 -0400 set initial x11 window geometry for windows which do not have wm hints fixes case where a non-override window has no hints and must be shown on startup --- src/bin/e_comp_x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index ae617a4..082db2b 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -5265,7 +5265,7 @@ _e_comp_x_manage_windows(void) } if (ec) { - if (ec->override) + if (ec->override || (!ec->icccm.fetch.hints)) { _e_comp_x_client_evas_init(ec); if (!ec->input_only) --