From 1dda4d26968f6fac1a3946180850b4b3ac0c9a1b Mon Sep 17 00:00:00 2001 From: ak1 Date: Wed, 23 Feb 2005 19:55:49 +0000 Subject: [PATCH] git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@83 e385b8ad-14ed-0310-8656-cc95a2468c6d --- ChangeLog.mutt-ng | 4 ++-- sidebar.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog.mutt-ng b/ChangeLog.mutt-ng index 5a089e4..4116dc7 100644 --- a/ChangeLog.mutt-ng +++ b/ChangeLog.mutt-ng @@ -2,8 +2,8 @@ Changes specific to mutt-ng: 2005-02-23: * Integrated assume_charset patch from http://www.emaillab.org/mutt/download15.html.en - * Integrated patch bei Rocco Rutte to correct minor bugs - * fixed pager line at the bottom in the sidebar + * Integrated patch by Rocco Rutte to correct minor bugs + * Fixed huge multibyte handling fuckup (was I drunk?!) 2005-02-22: * Merged mutt changes diff --git a/sidebar.c b/sidebar.c index 23abab9..e1bec5d 100644 --- a/sidebar.c +++ b/sidebar.c @@ -208,7 +208,7 @@ int draw_sidebar(int menu) { /* draw the divider */ - for ( ; lines < LINES-2-(menu != MENU_PAGER); lines++ ) { + for ( ; lines < LINES-1-(menu != MENU_PAGER); lines++ ) { move(lines, SidebarWidth - 1); addch('|'); #ifndef USE_SLANG_CURSES @@ -249,7 +249,7 @@ int draw_sidebar(int menu) { lines++; } SETCOLOR(MT_COLOR_NORMAL); - for ( ; lines < LINES - 2 - (menu != MENU_PAGER); lines++ ) { + for ( ; lines < LINES - 1 - (menu != MENU_PAGER); lines++ ) { int i = 0; move( lines, 0 ); for ( ; i < SidebarWidth - 1; i++ ) -- 2.20.1