saved 2LOC

This commit is contained in:
arg@10ksloc.org 2006-08-01 15:16:29 +02:00
parent 77f8c075c4
commit b01a51a844
1 changed files with 2 additions and 4 deletions

View File

@ -116,12 +116,10 @@ buttonpress(XEvent *e)
}
break;
case Button4:
a.i = (tsel + 1 < TLast) ? tsel + 1 : 0;
view(&a);
viewnext(&a);
break;
case Button5:
a.i = (tsel - 1 >= 0) ? tsel - 1 : TLast - 1;
view(&a);
viewprev(&a);
break;
}
}