1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-15 05:37:46 +02:00

fixed cursor

This commit is contained in:
Jfreegman 2013-08-02 03:36:31 -04:00
parent 6405632b49
commit c4f31e4646

9
main.c
View File

@ -280,6 +280,14 @@ void prepare_window(WINDOW* w) {
wresize(w, LINES-2, COLS);
}
/* Draws cursor relative to input */
void position_cursor(WINDOW* w)
{
int x, y;
getyx(w, y, x);
move(y, x);
}
int main(int argc, char* argv[]) {
int ch;
ToxWindow* a;
@ -299,6 +307,7 @@ int main(int argc, char* argv[]) {
a->blink = false;
a->onDraw(a);
draw_bar();
position_cursor(a->window);
// Handle input.
ch = getch();