Put testcurs' "Output test" into blink mode, if possible.

This commit is contained in:
William McBrine
2018-01-01 11:56:21 -05:00
parent 06f3d4e702
commit 820bf424e4

View File

@@ -563,6 +563,9 @@ void outputTest(WINDOW *win)
chtype ch;
int by, bx;
#ifdef PDCURSES
PDC_set_blink(TRUE);
#endif
nl();
wclear(win);
mvwaddstr(win, 1, 1, "You should now have a screen in the upper "
@@ -719,6 +722,9 @@ void outputTest(WINDOW *win)
mvaddstr(LINES - 2, 10, Buffer);
refresh();
Continue(win);
#ifdef PDCURSES
PDC_set_blink(FALSE);
#endif
}
#if HAVE_RESIZE