Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/conference.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,10 @@ void redraw_conference_win(ToxWindow *self)

scrollok(ctx->history, 0);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);

if (!self->scroll_pause) {
line_info_reset_start(self, ctx->hst);
}
}

static void conference_onConferenceMessage(ToxWindow *self, Toxic *toxic, uint32_t conferencenum, uint32_t peernum,
Expand Down
4 changes: 4 additions & 0 deletions src/groupchats.c
Original file line number Diff line number Diff line change
Expand Up @@ -945,6 +945,10 @@ void redraw_groupchat_win(ToxWindow *self)
wmove(self->window, y2 - CURS_Y_OFFSET, 0);

self->x = 0; // trigger the statusbar to be re-sized

if (!self->scroll_pause) {
line_info_reset_start(self, ctx->hst);
}
}

static void group_onAction(ToxWindow *self, Toxic *toxic, uint32_t groupnumber, uint32_t peer_id, const char *action,
Expand Down
Loading