diff --git a/docs/changelog.rst b/docs/changelog.rst index 406a19175..f709478f6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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] ------------------------------ diff --git a/kitty/rewrap.h b/kitty/rewrap.h index e58c93d08..2db3d3d28 100644 --- a/kitty/rewrap.h +++ b/kitty/rewrap.h @@ -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