X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=97f1beda31f0e7006d96b108be1020f986315161;hp=25d7468de3b390960cd0b1db4e0fbb5068570758;hb=0cdfadc00f3db981c5fccbd654c4a19becf42ef7;hpb=63f828fbb1080f8de26ff5f0d04ec79c2b3daec4 diff --git a/menu.c b/menu.c index 25d7468..97f1bed 100644 --- a/menu.c +++ b/menu.c @@ -1,7 +1,9 @@ /* * Copyright notice from original mutt: * Copyright (C) 1996-2000 Michael R. Elkins - * + * * Parts of it were written/modified by: + * Nico Golde + * * This file is part of mutt-ng, see http://www.muttng.org/. * It's licensed under the GNU General Public License, * please see the file GPL in the top level source directory. @@ -167,6 +169,8 @@ void menu_redraw_full (MUTTMENU * menu) /* clear() doesn't optimize screen redraws */ move (0, 0); clrtobot (); + + if (!option(OPTMBOXPANE)) SidebarWidth=0; if (option (OPTHELP)) { SETCOLOR (MT_COLOR_STATUS); @@ -203,6 +207,7 @@ void menu_redraw_index (MUTTMENU * menu) char buf[STRING]; int i; + if (!option(OPTMBOXPANE)) SidebarWidth=0; sidebar_draw (1); for (i = menu->top; i < menu->top + menu->pagelen; i++) { if (i < menu->max) { @@ -317,6 +322,8 @@ void menu_redraw_current (MUTTMENU * menu) menu_make_entry (buf, sizeof (buf), menu, menu->current); menu_pad_string (buf, sizeof (buf)); + if (!option(OPTMBOXPANE)) SidebarWidth=0; + if (option (OPTARROWCURSOR)) { int attr = menu->color (menu->current);