about summary refs log tree commit diff stats
path: root/src/ui/core.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-07-29 23:48:28 +0100
committerJames Booth <boothj5@gmail.com>2015-07-29 23:48:28 +0100
commit8ec931eb84896ae261b39cd884d4463338b7f2b2 (patch)
tree05f4f54e066d5d6b0e3a2d35dca338f854cec1a8 /src/ui/core.c
parent79f618367d1e3a5e1c3fa55798e7e5b01f577273 (diff)
downloadprofani-tty-8ec931eb84896ae261b39cd884d4463338b7f2b2.tar.gz
Added cons_show_padded
Diffstat (limited to 'src/ui/core.c')
-rw-r--r--src/ui/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index fb647083..bbaebe31 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1150,7 +1150,7 @@ ui_current_print_line(const char * const msg, ...)
     va_start(arg, msg);
     GString *fmt_msg = g_string_new(NULL);
     g_string_vprintf(fmt_msg, msg, arg);
-    win_println(window, fmt_msg->str);
+    win_println(window, 0, fmt_msg->str);
     va_end(arg);
     g_string_free(fmt_msg, TRUE);
 }
@@ -2526,7 +2526,7 @@ ui_show_form_field(ProfWin *window, DataForm *form, char *tag)
 {
     FormField *field = form_get_field_by_tag(form, tag);
     _ui_handle_form_field(window, tag, field);
-    win_println(window, "");
+    win_println(window, 0, "");
 }
 
 void