mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Core
This commit is contained in:
commit
75daa1aec9
|
@ -305,6 +305,9 @@ int main(int argc, char* argv[]) {
|
|||
if(ch == '\t') {
|
||||
w_active = (w_active + 1) % w_num;
|
||||
}
|
||||
else if(ch == KEY_BTAB) {
|
||||
w_active = (w_active + w_num - 1) % w_num;
|
||||
}
|
||||
else if(ch != ERR) {
|
||||
a->onKey(a, ch);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user