Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 559336
Collapse All | Expand All

(-)a/sidebar.c (-1 / +6 lines)
Lines 318-324 Link Here
318
				strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth);
318
				strncat(sidebar_folder_name, tmp_folder_name, strlen(tmp_folder_name) + sidebar_folder_depth);
319
			}
319
			}
320
		}
320
		}
321
		printw( "%.*s", SidebarWidth - delim_len + 1,
321
		/* DO NOT USE this format string - it's incorrect works with multibyte UTF-8 characters. 
322
		 * ad dot darkman at gmail dot com */
323
		/*printw( "%.*s", SidebarWidth - delim_len + 1,
324
			make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
325
			tmp->msg_unread, tmp->msg_flagged));*/
326
		printw( "%s", 
322
			make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
327
			make_sidebar_entry(sidebar_folder_name, tmp->msgcount,
323
			tmp->msg_unread, tmp->msg_flagged));
328
			tmp->msg_unread, tmp->msg_flagged));
324
		if (sidebar_folder_depth > 0)
329
		if (sidebar_folder_depth > 0)

Return to bug 559336