Add win_print_outgoing

This commit is contained in:
James Booth
2016-10-15 20:07:33 +01:00
parent ce5f07a012
commit 3b2ceee89b
4 changed files with 24 additions and 2 deletions

View File

@@ -308,7 +308,7 @@ chatwin_outgoing_msg(ProfChatWin *chatwin, const char *const message, char *id,
if (request_receipt && id) {
win_print_with_receipt((ProfWin*)chatwin, enc_char, "me", message, id);
} else {
win_printf((ProfWin*)chatwin, enc_char, 0, NULL, 0, THEME_TEXT_ME, "me", "%s", message);
win_print_outgoing((ProfWin*)chatwin, enc_char, "%s", message);
}
}