Fix a crash with multiline input caused by losing the figfont information.
This commit is contained in:
parent
63311c54a5
commit
614e317810
1 changed files with 7 additions and 2 deletions
|
@ -58,9 +58,14 @@ static int feed_figlet(context_t *cx, uint32_t ch, uint32_t attr)
|
||||||
|
|
||||||
static int flush_figlet(context_t *cx)
|
static int flush_figlet(context_t *cx)
|
||||||
{
|
{
|
||||||
|
/* We copy cx->cv into cx->torender instead of swapping pointers
|
||||||
|
* because that would lose the figfont information. */
|
||||||
|
/* FIXME: use caca_copy_canvas() or whatever when it's implemented. */
|
||||||
int ret = caca_flush_figlet(cx->cv);
|
int ret = caca_flush_figlet(cx->cv);
|
||||||
cx->torender = cx->cv;
|
cx->torender = caca_create_canvas(caca_get_canvas_width(cx->cv),
|
||||||
cx->cv = caca_create_canvas(0, 0);
|
caca_get_canvas_height(cx->cv));
|
||||||
|
caca_blit(cx->torender, 0, 0, cx->cv, NULL);
|
||||||
|
caca_set_canvas_size(cx->cv, 0, 0);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue