From 711962e68dc1e7e1cec75e39767a59947302456a Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 5 Jul 2012 13:12:52 +0000 Subject: [PATCH] fix screen mouse flip action keyword jargon to not flip crazily and actually focus correct thing fixes cedric's bug SVN revision: 73345 --- src/bin/e_actions.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 07ebcfbdd..d642bd5cb 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1588,7 +1588,7 @@ ACT_FN_GO(screen_send_to, ) ecore_x_pointer_warp(zone2->container->win, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); - e_zone_desk_flip_to(zone2, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); + e_desk_last_focused_focus(e_desk_current_get(zone2)); } } } @@ -1630,7 +1630,7 @@ ACT_FN_GO(screen_send_by, ) ecore_x_pointer_warp(zone2->container->win, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); - e_zone_desk_flip_to(zone2, zone2->x + (zone2->w / 2), zone2->y + (zone2->h / 2)); + e_desk_last_focused_focus(e_desk_current_get(zone2)); } } }