From 9836d657d2060745125442f4bfa6649aa7778f8f Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 21 May 2013 11:29:50 +0100 Subject: [PATCH] fix window desk send flip to action (GLIMAAAAAAAAAAAAAAAAAAAAA) --- src/bin/e_actions.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 599df02a2..e9d45a2ad 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1295,13 +1295,12 @@ ACT_FN_GO(window_desk_move_by, ) if (desk) { - /* switch desktop. Quite useful from the interface point of view. */ - e_zone_desk_flip_by(bd->zone, to_x - dx, to_y - dy); /* send the border to the required desktop. */ e_border_desk_set(bd, desk); + /* switch desktop. Quite useful from the interface point of view. */ + e_zone_desk_flip_by(bd->zone, to_x - dx, to_y - dy); if (!bd->lock_user_stacking) e_border_raise(bd); - e_border_focus_set(bd, 1, 1); } } }