mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
fixed cursor
This commit is contained in:
parent
91216719a5
commit
5541008b3b
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user