From 38be98cde5a13140f1095bfb05793fee2fe5cea3 Mon Sep 17 00:00:00 2001 From: James Booth Date: Sun, 25 Aug 2013 23:30:10 +0100 Subject: [PATCH] Fix console references after merging master --- src/ui/console.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ui/console.c b/src/ui/console.c index 65711b48..b7c833e0 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -611,6 +611,8 @@ cons_show_bookmarks(const GList *list) while (list != NULL) { item = list->data; + ProfWin *console = wins_get_console(); + win_print_time(console, '-'); wprintw(console->win, " %s", item->jid); if (item->nick != NULL) { @@ -623,7 +625,7 @@ cons_show_bookmarks(const GList *list) list = g_list_next(list); } - ui_console_dirty(); + wins_refresh_console(); cons_alert(); }