raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=05d6225d7656abe643f7f792cd027743d2d3383f
commit 05d6225d7656abe643f7f792cd027743d2d3383f Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu May 29 14:08:09 2014 +0900 fix screen move by action to work again this fixes T1275 --- src/bin/e_actions.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 068bd65..283626e 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1308,14 +1308,15 @@ ACT_FN_GO(window_zone_move_by, ) move = eina_list_count(ec->zone->comp->zones) - 1; else if ((unsigned int)move >= eina_list_count(ec->zone->comp->zones)) move = 0; - zone = eina_list_nth(ec->zone->comp->zones, move); - if ((!zone) || (zone->num != (unsigned int)move)) return; + zone = e_util_comp_zone_number_get(0, move); + if (!zone) return; max = ec->maximized; fs = ec->fullscreen_policy; fullscreen = ec->fullscreen; if (ec->maximized) e_client_unmaximize(ec, E_MAXIMIZE_BOTH); if (fullscreen) e_client_unfullscreen(ec); e_client_zone_set(ec, zone); +// e_client_desk_set(ec, e_desk_current_get(zone)); if (max) e_client_maximize(ec, max); if (fullscreen) e_client_fullscreen(ec, fs); evas_object_focus_set(ec->frame, 1); --
