e17: fix the rare case that the last focused border had lock_focus_out. try next instead of break

SVN revision: 57644
This commit is contained in:
Hannes Janetzek 2011-03-10 00:04:31 +00:00
parent 800be7c985
commit 1925cec0c6
1 changed files with 4 additions and 2 deletions

View File

@ -380,8 +380,10 @@ e_desk_last_focused_focus(E_Desk *desk)
{
/* this was the window last focused in this desktop */
if (!bd->lock_focus_out)
e_border_focus_set(bd, 1, 1);
break;
{
e_border_focus_set(bd, 1, 1);
break;
}
}
}
}