gradients PoC: add lower block for completeness #921

This commit is contained in:
nick black 2020-08-19 12:45:26 -04:00
parent 086571ff4b
commit 4745c3596d
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -36,6 +36,12 @@ gradStriations(struct notcurses* nc){
if(notcurses_render(nc)){
return -1;
}
if(ncplane_gradient(stdn, "", NCSTYLE_NONE, ul, ur, ll, lr, dimy - 1, dimx - 1) <= 0){
return -1;
}
if(notcurses_render(nc)){
return -1;
}
sleep(3);
return 0;
}