X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=muttlib.c;h=b01619f6c29984e5ab1277ec10d03dd514531924;hp=4beb99c86049c096c3e0d89b7f2b5397d1bc4243;hb=1bbedb2dcb610160fe7fd2b44bd098248bfd83a0;hpb=5c310cabcfafe551dcad7638c007daae1c7d3710 diff --git a/muttlib.c b/muttlib.c index 4beb99c..b01619f 100644 --- a/muttlib.c +++ b/muttlib.c @@ -1026,7 +1026,7 @@ void mutt_FormatString (char *dest, /* output buffer */ ch = *src++; /* pad char */ /* calculate space left on line. if we've already written more data than will fit on the line, ignore the rest of the line */ - if ( DrawFullLine ) + if ( DrawFullLine || option(OPTSTATUSONTOP)) count = (COLS < destlen ? COLS : destlen); else count = ((COLS-SidebarWidth) < destlen ? (COLS - SidebarWidth) : destlen);