ensure focus is set when moving a window across zones

SVN revision: 74188
This commit is contained in:
Mike Blumenkrantz 2012-07-19 13:15:33 +00:00
parent 9872898794
commit 0a99276b73
1 changed files with 2 additions and 1 deletions

View File

@ -1333,7 +1333,8 @@ ACT_FN_GO(window_zone_move_by, )
if (fullscreen) e_border_unfullscreen(bd);
e_border_zone_set(bd, zone);
if (max) e_border_maximize(bd, max);
if (fullscreen) e_border_fullscreen(bd, fs);
if (fullscreen) e_border_fullscreen(bd, fs);
e_border_focus_set(bd, 1, 1);
}
/***************************************************************************/