Fix Bug: If we're not Warp While Selecting, then don't warp

SVN revision: 20514
This commit is contained in:
Christopher Michael 2006-02-16 06:03:50 +00:00
parent b0da09e195
commit 99fa80874a
1 changed files with 15 additions and 0 deletions

View File

@ -578,6 +578,21 @@ _e_winlist_activate(void)
if (!animator)
animator = ecore_animator_add(_e_winlist_animator, NULL);
}
else
{
warp_to = 0;
if (warp_timer)
{
ecore_timer_del(warp_timer);
warp_timer = NULL;
}
if (animator)
{
ecore_animator_del(animator);
animator = NULL;
}
}
if ((!ww->border->lock_user_stacking) && (e_config->winlist_list_raise_while_selecting))
e_border_raise(ww->border);
if ((!ww->border->lock_focus_out) && (e_config->winlist_list_focus_while_selecting))