mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-10-31 15:20:13 +00:00
jungle demo: eliminate plot bleedthrough
This commit is contained in:
parent
b72a386aa3
commit
5a1b1146d3
@ -26568,6 +26568,11 @@ show_copyright(struct notcurses* nc){
|
||||
struct ncplane* n = ncplane_aligned(notcurses_stdplane(nc), 1, dimx,
|
||||
dimy - 1, NCALIGN_RIGHT, NULL);
|
||||
if(n){
|
||||
cell c = CELL_TRIVIAL_INITIALIZER;
|
||||
cell_set_fg_rgb(&c, 0, 0, 0);
|
||||
cell_set_bg_rgb(&c, 0, 0, 0);
|
||||
ncplane_set_base_cell(n, &c);
|
||||
cell_release(n, &c);
|
||||
if(ncplane_set_fg(n, 0xffffff) < 0){
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user