about summary refs log tree commit diff stats
path: root/src/ui/window.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-10-15 22:17:16 +0100
committerJames Booth <boothj5@gmail.com>2016-10-15 22:17:16 +0100
commit7ad722ae28aa662333237efb0315119902487858 (patch)
tree8f07ca1c35cab6ba4a3ba91e6296c29b6df05590 /src/ui/window.c
parentbb6540f7d8f4804f787b11fb6cfdcb2d8f3afff7 (diff)
downloadprofani-tty-7ad722ae28aa662333237efb0315119902487858.tar.gz
Fix win_append buffer push
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c2
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);