Skip to content

Commit

Permalink
disable display suppression and garbage collection of overlayed images
Browse files Browse the repository at this point in the history
for now as it is buggy; further analysis pending
  • Loading branch information
mintty committed Jun 17, 2020
1 parent b62bc59 commit 5589031
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/winimg.c
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,9 @@ winimgs_paint(void)
// overwritten cells are excluded from display,
// if all cells are overwritten, flag for deletion
bool disp_flag = false;
// disable display suppression and garbage collection of
// overlayed images for now as it is buggy; further analysis pending
disp_flag = true;
for (int y = max(0, top); y < min(top + img->height, term.rows); ++y) {
int wide_factor =
(term.displines[y]->lattr & LATTR_MODE) == LATTR_NORM ? 1 : 2;
Expand Down
1 change: 1 addition & 0 deletions wiki/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Sixel and image display
* For overlapping images, fixed background and clipping borders (~#1010).
* Avoid image flickering by revised image list rendering strategy (#1010).
* Disabled buggy optimisation of overlayed images.

### 3.1.8 (7 June 2020) ###

Expand Down

0 comments on commit 5589031

Please sign in to comment.