From 3dbfcb101d1227e799c0eb070c046628498ecf5a Mon Sep 17 00:00:00 2001 From: Pierre-Alexandre Meyer Date: Fri, 4 Sep 2009 21:17:43 -0700 Subject: [PATCH] cmenu: turn off auto wrap Auto wrap made the menu scroll because of the status line (when printing the last character of the bottom right of the screen, the ansicon scrolled the whole menu). Signed-off-by: Pierre-Alexandre Meyer --- com32/cmenu/libmenu/menu.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/com32/cmenu/libmenu/menu.c b/com32/cmenu/libmenu/menu.c index f437520..dd525a6 100644 --- a/com32/cmenu/libmenu/menu.c +++ b/com32/cmenu/libmenu/menu.c @@ -734,6 +734,10 @@ pt_menuitem showmenus(uchar startmenu) cls(); clearwindow(ms->minrow, ms->mincol, ms->maxrow, ms->maxcol, ms->fillchar, ms->fillattr); + + /* Turn autowrap off, to avoid scrolling the menu */ + printf(CSI "?7l"); + tpos = (ms->numcols - strlen(ms->title) - 1) >> 1; // center it on line gotoxy(ms->minrow, ms->mincol); cprint(ms->tfillchar, ms->titleattr, ms->numcols); -- 2.7.4