tasn pushed a commit to branch enlightenment-0.19. http://git.enlightenment.org/core/enlightenment.git/commit/?id=9be07cfdb5d055395236fc60abfd8a2e1a9e100f
commit 9be07cfdb5d055395236fc60abfd8a2e1a9e100f Author: Tom Hacohen <[email protected]> Date: Sun Jan 4 13:45:16 2015 +0000 Tiling: don't try to change the border of borderless windows. @fix --- src/modules/tiling/e_mod_tiling.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c index a549101..9e8fc30 100644 --- a/src/modules/tiling/e_mod_tiling.c +++ b/src/modules/tiling/e_mod_tiling.c @@ -220,6 +220,9 @@ is_tilable(const E_Client *ec) static void change_window_border(E_Client *ec, const char *bordername) { + if (ec->mwm.borderless) + return; + ec->border.changed = 0; if (e_client_border_set(ec, bordername)) eina_stringshare_refplace(&ec->bordername, ec->border.name); --
