1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-22 19:43:02 +01:00

Fix buggy behaviour when printing non-ascii characters in Home input field

This line doesn't appear to be doing anything useful - most likely a leftover
from the recent UI overhaul
This commit is contained in:
jfreegman 2021-01-25 22:36:05 -05:00
parent 07a41f9e0b
commit 80fd3d3b97
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

View File

@ -324,8 +324,6 @@ static void prompt_onDraw(ToxWindow *self, Tox *m)
mvwprintw(ctx->linewin, 0, 0, "%ls", &ctx->line[ctx->start]);
}
mvwhline(ctx->linewin, 0, ctx->len, ' ', x2 - ctx->len);
curs_set(1);
StatusBar *statusbar = self->stb;