mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-09 08:21:01 -04: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).
|
bindings instead (https://codeberg.org/dnkl/foot/issues/407).
|
||||||
* Custom `line-height` settings now scale when increasing or
|
* Custom `line-height` settings now scale when increasing or
|
||||||
decreasing the font size at run-time.
|
decreasing the font size at run-time.
|
||||||
|
* Newlines sometimes incorrectly inserted into copied text
|
||||||
|
(https://codeberg.org/dnkl/foot/issues/410).
|
||||||
|
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
|
||||||
|
|
@ -2870,6 +2870,7 @@ term_print(struct terminal *term, wchar_t wc, int width)
|
||||||
cell->attrs = term->vt.attrs;
|
cell->attrs = term->vt.attrs;
|
||||||
|
|
||||||
row->dirty = true;
|
row->dirty = true;
|
||||||
|
row->linebreak = false;
|
||||||
cell->attrs.clean = 0;
|
cell->attrs.clean = 0;
|
||||||
|
|
||||||
/* Advance cursor the 'additional' columns while dirty:ing the cells */
|
/* 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;
|
cell->attrs = term->vt.attrs;
|
||||||
|
|
||||||
row->dirty = true;
|
row->dirty = true;
|
||||||
|
row->linebreak = false;
|
||||||
cell->attrs.clean = 0;
|
cell->attrs.clean = 0;
|
||||||
|
|
||||||
/* Advance cursor */
|
/* Advance cursor */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue