all repos — tint2 @ 257cc45adcb3a7bd0ef986ce653b0dcd0390d9c8

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

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
commit

257cc45adcb3a7bd0ef986ce653b0dcd0390d9c8

parent

0a1ceaeed0ef671ebc82496ecf0578ff6168e372

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/tint.csrc/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);