Fix resizing window smaller and then restoring causing some wrapped lines to not be properly unwrapped

Fix #1206
This commit is contained in:
Kovid Goyal 2018-12-06 12:56:24 +05:30
parent 3005b8b9d6
commit 16542e96bf
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 4 additions and 1 deletions

View File

@ -13,6 +13,9 @@ Changelog
selection of bold/italic fonts when using aliases such as "monospace" to not
work (:iss:`1209`)
- Fix resizing window smaller and then restoring causing some wrapped lines to not
be properly unwrapped (:iss:`1206`)
0.13.0 [2018-12-05]
------------------------------

View File

@ -16,7 +16,7 @@
#endif
#ifndef init_dest_line
#define init_dest_line(dest_y) init_line(dest, dest->line, dest->line_map[dest_y]);
#define init_dest_line(dest_y) init_line(dest, dest->line, dest->line_map[dest_y]); dest->line->continued = dest->line_attrs[dest_y];
#endif
#ifndef first_dest_line