mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-20 01:40:14 -05:00
commit
eb3f9f14b0
2 changed files with 4 additions and 0 deletions
|
|
@ -35,6 +35,8 @@
|
|||
bindings instead (https://codeberg.org/dnkl/foot/issues/407).
|
||||
* Custom `line-height` settings now scale when increasing or
|
||||
decreasing the font size at run-time.
|
||||
* Newlines sometimes incorrectly inserted into copied text
|
||||
(https://codeberg.org/dnkl/foot/issues/410).
|
||||
|
||||
|
||||
### Security
|
||||
|
|
|
|||
|
|
@ -2870,6 +2870,7 @@ term_print(struct terminal *term, wchar_t wc, int width)
|
|||
cell->attrs = term->vt.attrs;
|
||||
|
||||
row->dirty = true;
|
||||
row->linebreak = false;
|
||||
cell->attrs.clean = 0;
|
||||
|
||||
/* Advance cursor the 'additional' columns while dirty:ing the cells */
|
||||
|
|
@ -2909,6 +2910,7 @@ ascii_printer_fast(struct terminal *term, wchar_t wc)
|
|||
cell->attrs = term->vt.attrs;
|
||||
|
||||
row->dirty = true;
|
||||
row->linebreak = false;
|
||||
cell->attrs.clean = 0;
|
||||
|
||||
/* Advance cursor */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue