selectively copy width in paint() #1207

pull/1208/head
nick black 4 years ago
parent fd2acde1b1
commit c98d6c2576
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -294,16 +294,18 @@ paint(const ncplane* p, struct crender* rvec, int dstleny, int dstlenx,
}else{
cell_set_wide(targc);
targc->stylemask = vis->stylemask;
targc->width = vis->width;
}
}else{
targc->stylemask = vis->stylemask;
targc->width = vis->width;
}
crender->p = p;
}else if(cell_wide_right_p(vis)){
cell_set_wide(targc);
crender->p = p;
targc->width = vis->width;
}
targc->width = vis->width;
}
// Background color takes effect independently of whether we have a

Loading…
Cancel
Save