Fix for no task cycling if all windows are minimized git-svn-id: http://tint2.googlecode.com/svn/trunk@652 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
o9000 o9000
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
src/tint.c
→
src/tint.c
@@ -329,14 +329,14 @@ if (desk == server.desktop)
set_active(tsk->win); break; case NEXT_TASK: - if (task_active) { + { Task *tsk1; tsk1 = next_task(find_active_task(tsk, task_active)); set_active(tsk1->win); } break; case PREV_TASK: - if (task_active) { + { Task *tsk1; tsk1 = prev_task(find_active_task(tsk, task_active)); set_active(tsk1->win);