sgr-full PoC: add NCSTYLE_STRUCK #1138

This commit is contained in:
nick black 2020-11-25 19:51:03 -05:00 committed by Nick Black
parent 202e3535d5
commit f89ca15640

View File

@ -22,6 +22,8 @@ int main(void){
ncplane_putstr_yx(n, y++, 0, "a ═ underline");
ncplane_set_styles(n, NCSTYLE_BLINK);
ncplane_putstr_yx(n, y++, 0, "a ═ blink");
ncplane_set_styles(n, NCSTYLE_STRUCK);
ncplane_putstr_yx(n, y++, 0, "a ═ strikethrough");
ncplane_putstr_yx(n, y++, 0, "sleeping for 5s...");
if(notcurses_render(nc)){
goto err;