From fd35bbeb728fdc0e9327ceb03339160c40414f94 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Fri, 29 Jul 2011 09:51:16 +0200 Subject: [PATCH] core: add "refresh_needed" in dump of bar windows to log file --- src/gui/gui-bar-window.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/gui/gui-bar-window.c b/src/gui/gui-bar-window.c index 65069f187..d3d9afea9 100644 --- a/src/gui/gui-bar-window.c +++ b/src/gui/gui-bar-window.c @@ -1486,12 +1486,13 @@ gui_bar_window_print_log (struct t_gui_bar_window *bar_window) for (j = 0; j < bar_window->items_subcount[i]; j++) { log_printf (" items_content[%03d][%03d]: '%s' " - "(item: '%s', num_lines: %d)", + "(item: '%s', num_lines: %d, refresh_needed: %d)", i, j, bar_window->items_content[i][j], (bar_window->items_count >= i + 1) ? bar_window->bar->items_array[i][j] : "?", - bar_window->items_num_lines[i][j]); + bar_window->items_num_lines[i][j], + bar_window->items_refresh_needed[i][j]); } } else