commit b39782fdcfdae01d20b9baa31330e141302c4361
parent 04a194c013e6566d4e00a022528e9ff667865662
Author: bakkeby <bakkeby@gmail.com>
Date: Sun, 18 Jul 2021 18:12:47 +0200
Removing gross purging of sixels code ref. #30
Diffstat:
1 file changed, 0 insertions(+), 10 deletions(-)
diff --git a/st.c b/st.c
@@ -2188,16 +2188,6 @@ csihandle(void)
tputtab(csiescseq.arg[0]);
break;
case 'J': /* ED -- Clear screen */
-
- #if SIXEL_PATCH
- /* purge sixels */
- /* TODO: kinda gross, should probably make this only purge
- * visible sixels */
- for (im = term.images; im; im = im->next) {
- im->should_delete = 1;
- }
- #endif // SIXEL_PATCH
-
switch (csiescseq.arg[0]) {
case 0: /* below */
tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);