X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pager.c;h=78887cc224509cb7fbf698ee1abdb7514b5d388d;hp=b287a6b429da9f901c235ddbe39634705815118a;hb=6a0262162a1d5e1ab850dbe4d254bbf81b174847;hpb=cfd5f411041c7ef44087b032751792fadc74586d diff --git a/pager.c b/pager.c index b287a6b..78887cc 100644 --- a/pager.c +++ b/pager.c @@ -1230,7 +1230,6 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra) int bodyoffset = 1; /* offset of first line of real text */ int statusoffset = 0; /* offset for the status bar */ - int helpoffset = LINES - 2; /* offset for the help bar. */ int bodylen = LINES - 2 - bodyoffset; /* length of displayable area */ MUTTMENU *pager_index = NULL; /* the Pager Index (PI) */ @@ -1289,12 +1288,10 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra) statusoffset = IsHeader (extra) ? indexlen : 0; bodyoffset = statusoffset + 1; - helpoffset = LINES - 2; - bodylen = helpoffset - bodyoffset; + bodylen = LINES - 2 - bodyoffset; - SETCOLOR(main_w, MT_COLOR_STATUS); - wmove(main_w, helpoffset, 0); - mutt_paddstr(main_w, getmaxx(main_w), ""); + SETCOLOR(main_w, MT_COLOR_SIDEBAR); + mvwhline(main_w, LINES - 2, 0, ACS_HLINE, getmaxx(main_w)); SETCOLOR(main_w, MT_COLOR_NORMAL); if (Resize != NULL) { @@ -1443,10 +1440,8 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t * extra) SETCOLOR(main_w, MT_COLOR_NORMAL); BKGDSET(main_w, MT_COLOR_NORMAL); } - /* if we're not using the index, update every time */ - if (index == 0) - sidebar_draw (); + sidebar_draw (); redraw = 0; mutt_refresh();