diff options
author | James Booth <boothj5@gmail.com> | 2016-10-15 22:17:16 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-10-15 22:17:16 +0100 |
commit | 7ad722ae28aa662333237efb0315119902487858 (patch) | |
tree | 8f07ca1c35cab6ba4a3ba91e6296c29b6df05590 /src/ui | |
parent | bb6540f7d8f4804f787b11fb6cfdcb2d8f3afff7 (diff) | |
download | profani-tty-7ad722ae28aa662333237efb0315119902487858.tar.gz |
Fix win_append buffer push
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c index 71a4f3ae..595d6852 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -1166,7 +1166,7 @@ win_append(ProfWin *window, theme_item_t theme_item, const char *const message, GString *fmt_msg = g_string_new(NULL); g_string_vprintf(fmt_msg, message, arg); - buffer_push(window->layout->buffer, '-', 0, timestamp, NO_EOL, theme_item, "", fmt_msg->str, NULL); + buffer_push(window->layout->buffer, '-', 0, timestamp, NO_DATE | NO_EOL, theme_item, "", fmt_msg->str, NULL); _win_print(window, '-', 0, timestamp, NO_DATE | NO_EOL, theme_item, "", fmt_msg->str, NULL); inp_nonblocking(TRUE); |