mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 22:53:03 +01:00
reverting unneeded changes
This commit is contained in:
parent
47cc00762e
commit
3a0e85fc5f
18
main.c
18
main.c
@ -282,7 +282,7 @@ void prepare_window(WINDOW* w) {
|
|||||||
|
|
||||||
int main(int argc, char* argv[]) {
|
int main(int argc, char* argv[]) {
|
||||||
int ch;
|
int ch;
|
||||||
ToxWindow* current_window;
|
ToxWindow* a;
|
||||||
|
|
||||||
init_term();
|
init_term();
|
||||||
init_tox();
|
init_tox();
|
||||||
@ -294,20 +294,22 @@ int main(int argc, char* argv[]) {
|
|||||||
do_tox();
|
do_tox();
|
||||||
|
|
||||||
// Draw.
|
// Draw.
|
||||||
current_window = &windows[w_active];
|
a = &windows[w_active];
|
||||||
prepare_window(current_window->window);
|
prepare_window(a->window);
|
||||||
current_window->blink = false;
|
a->blink = false;
|
||||||
current_window->onDraw(current_window);
|
a->onDraw(a);
|
||||||
draw_bar();
|
draw_bar();
|
||||||
|
|
||||||
// Handle input.
|
// Handle input.
|
||||||
ch = getch();
|
ch = getch();
|
||||||
if(ch == '\t') {
|
if(ch == '\t') {
|
||||||
w_active = (w_active + 1) % w_num;
|
w_active = (w_active + 1) % w_num;
|
||||||
} else if(ch == KEY_BTAB) {
|
}
|
||||||
|
else if(ch == KEY_BTAB) {
|
||||||
w_active = (w_active + w_num - 1) % w_num;
|
w_active = (w_active + w_num - 1) % w_num;
|
||||||
} else if(ch != ERR) {
|
}
|
||||||
current_window->onKey(current_window, ch);
|
else if(ch != ERR) {
|
||||||
|
a->onKey(a, ch);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user