Browse Source

saved 2LOC

master
arg@10ksloc.org 18 years ago
parent
commit
b01a51a844
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      event.c

+ 2
- 4
event.c 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;
}
}


Loading…
Cancel
Save