X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Fcurs_main.c;h=e80d302ad06ae344ad4852ab02767d69b3742d5e;hp=6fdbc163bf46eedce2b6170be147588935d8f35b;hb=62660b191284bee3b9bc3eeb126f7632636af535;hpb=cfd5f411041c7ef44087b032751792fadc74586d diff --git a/lib-ui/curs_main.c b/lib-ui/curs_main.c index 6fdbc16..e80d302 100644 --- a/lib-ui/curs_main.c +++ b/lib-ui/curs_main.c @@ -549,13 +549,13 @@ int mutt_index_menu (void) tag = 1; /* give visual indication that the next command is a tag- command */ - mvwaddstr (main_w, LINES - 1, 0, "tag-"); - wclrtoeol (main_w); + mvwaddstr (stdscr, LINES - 1, 0, "tag-"); + wclrtoeol (stdscr); /* get the real command */ if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX) { /* abort tag sequence */ - CLEARLINE(main_w, LINES - 1); + CLEARLINE(stdscr, LINES - 1); continue; } } @@ -584,13 +584,13 @@ int mutt_index_menu (void) tag = 1; /* give visual indication that the next command is a tag- command */ - mvwaddstr (main_w, LINES - 1, 0, "tag-"); - wclrtoeol (main_w); + mvwaddstr (stdscr, LINES - 1, 0, "tag-"); + wclrtoeol (stdscr); /* get the real command */ if ((op = km_dokey (MENU_MAIN)) == OP_TAG_PREFIX) { /* abort tag sequence */ - CLEARLINE(main_w, LINES - 1); + CLEARLINE(stdscr, LINES - 1); continue; } }