diff options
Diffstat (limited to 'testing/toxic/chat.c')
-rw-r--r-- | testing/toxic/chat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/toxic/chat.c b/testing/toxic/chat.c index 854d3817..1bfd94f5 100644 --- a/testing/toxic/chat.c +++ b/testing/toxic/chat.c | |||
@@ -106,6 +106,7 @@ static void chat_onKey(ToxWindow* self, int key) { | |||
106 | } | 106 | } |
107 | 107 | ||
108 | static void chat_onDraw(ToxWindow* self) { | 108 | static void chat_onDraw(ToxWindow* self) { |
109 | curs_set(1); | ||
109 | int x, y; | 110 | int x, y; |
110 | ChatContext* ctx = (ChatContext*) self->x; | 111 | ChatContext* ctx = (ChatContext*) self->x; |
111 | 112 | ||
@@ -117,7 +118,7 @@ static void chat_onDraw(ToxWindow* self) { | |||
117 | 118 | ||
118 | wclear(ctx->linewin); | 119 | wclear(ctx->linewin); |
119 | mvwhline(ctx->linewin, 0, 0, '_', COLS); | 120 | mvwhline(ctx->linewin, 0, 0, '_', COLS); |
120 | mvwprintw(ctx->linewin, 1, 0, "%s\n", ctx->line); | 121 | mvwprintw(self->window, y-1, 0, "%s\n", ctx->line); |
121 | 122 | ||
122 | wrefresh(self->window); | 123 | wrefresh(self->window); |
123 | } | 124 | } |