mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 02:03:02 +01:00
fixes
This commit is contained in:
parent
a98ec22fd6
commit
d29e5dbe48
@ -288,10 +288,11 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key)
|
|||||||
} else
|
} else
|
||||||
/* Add printable chars to buffer and print on input space */
|
/* Add printable chars to buffer and print on input space */
|
||||||
#if HAVE_WIDECHAR
|
#if HAVE_WIDECHAR
|
||||||
if (iswprint(key)) {
|
if (iswprint(key))
|
||||||
#else
|
#else
|
||||||
if (isprint(key)) {
|
if (isprint(key))
|
||||||
#endif
|
#endif
|
||||||
|
{
|
||||||
if (ctx->pos < (MAX_STR_SIZE-1)) {
|
if (ctx->pos < (MAX_STR_SIZE-1)) {
|
||||||
mvwaddstr(self->window, y, x, wc_to_char(key));
|
mvwaddstr(self->window, y, x, wc_to_char(key));
|
||||||
ctx->line[ctx->pos++] = key;
|
ctx->line[ctx->pos++] = key;
|
||||||
|
@ -113,7 +113,6 @@ static void friendlist_onFriendAdded(ToxWindow *self, Tox *m, int num)
|
|||||||
friends[i].online = false;
|
friends[i].online = false;
|
||||||
friends[i].status = TOX_USERSTATUS_NONE;
|
friends[i].status = TOX_USERSTATUS_NONE;
|
||||||
friends[i].namelength = tox_getname(m, num, friends[i].name);
|
friends[i].namelength = tox_getname(m, num, friends[i].name);
|
||||||
memset(friends[i].pending_groupchat, 0, TOX_CLIENT_ID_SIZE);
|
|
||||||
|
|
||||||
if (friends[i].namelength == -1 || friends[i].name[0] == '\0') {
|
if (friends[i].namelength == -1 || friends[i].name[0] == '\0') {
|
||||||
strcpy(friends[i].name, (uint8_t *) UNKNOWN_NAME);
|
strcpy(friends[i].name, (uint8_t *) UNKNOWN_NAME);
|
||||||
|
@ -127,6 +127,7 @@ uint8_t num_file_senders;
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t filenames[MAX_FILES][MAX_STR_SIZE];
|
uint8_t filenames[MAX_FILES][MAX_STR_SIZE];
|
||||||
bool pending[MAX_FILES];
|
bool pending[MAX_FILES];
|
||||||
|
bool active[MAX_FILES];
|
||||||
} FileReceiver;
|
} FileReceiver;
|
||||||
|
|
||||||
/* End file transfer code */
|
/* End file transfer code */
|
||||||
|
Loading…
Reference in New Issue
Block a user